> > Try this function:
> > http://www.php.net/manual/en/function.stripslashes.php
> 
> Oddly enough, as I told John, I did that as well and it doesn't work.

Are the \ there to escape anything, like ' or " or are they just in
there by themselves..as a delimiter or something. If the \ is by itself,
then stripslashes() won't do anything to it. Maybe you should just try

$newtext = str_replace("\","",$old_text);

Without seeing a sample of your file and some more information, all I
can give is "snooty" answers, evidently. 

---John Holmes...


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

Reply via email to