Hi,
If I have a string like "It\'s great!"
How can I replace the slash to "It's great!"?
Thanks!
$new_string = stripslashes($string);
I do believe that's in the manual...
---John Holmes...