> Any functions to remove    '    from a longstring?

<?php

  $myLongString = "......'..'.....'.....";
  $myLongString = str_replace("'", "", $myLongString);

?>

et voila! Simple huh ;)

For more info, check out: http://www.php.net/str_replace


-- 
Dan Hardiker [EMAIL PROTECTED]
ADAM Software & Systems Engineer
First Creative



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to