Prism ICT

Blog

At Prism ICT, we offer a comprehensive range of services designed to help you achieve digital excellence At Prism ICT, we offer a comprehensive range of services

PHP explode() with multiple delimiters

Simple use this code <?php function multiexplode ($delimiters,$data) { $MakeReady = str_replace($delimiters, $delimiters[0], $data); $Return = explode($delimiters[0], $MakeReady); return $Return; } $data = "Ami jani na, amita maybe-tomar () kam";

Default image

How To Stop Windows 10 Automatic Updates

For stop automatic update on windows 10 just follow this few steps. Open control panel make sure currently viewing as Large icon, Double click on Administrative Tools. After open new window

If statement in excel

The main syntax for the IF function in Microsoft Excel is: IF( condition_here, [value_if_true], [value_if_false] ) If A1 equal to B1 =IF(A1=B1, "value_if_true", "value_if_false") If A1 not equal to B1 =IF(A1<>B1, "value_if_true", "value_if_false")

1 14 15 16 17 18 19