Sancar Saran wrote:
Hi,I cannot do any operation wiht single quote like explode("'",$strContent); Did I miss someting ? Regards Sancar
what do you mean by 'cannot do' ?
If I do:
<?php
$string = "part1 ' part2";
print_r(explode("'", $string));
it will return
Array(
[0] = "part1 "
[1] = " part2"
)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

