Question : winzip is there any free zip utility?

I used the following but now the are asking for money for zipping -- do you know any free zip utility?
http://www.winzip.com/order.cgi?PWRcklnWZsp33

Answer : winzip is there any free zip utility?

Use preg_replace ...here is an example..


<?
$var = 'abcdef abcdef abcdef';
// pattern, replacement, string, limit
echo preg_replace('/abc/', '123', $var, 1); // outputs '123def abcdef abcdef'
?>
Random Solutions  
 
programming4us programming4us