|
Posted by "Richard Lynch" on 07/11/05 04:42
On Fri, July 8, 2005 12:48 pm, Jay Blanchard said:
> [snip]
> Lets say I have a string:
>
> "c:\www\test"
>
> I want to insert it into a database, but what ends up getting inserted
> is:
PHP3 and earlier:
http://php.net/addslashes
PHP4 (?) and later:
http://php.net/myqsl_escape_string
> c:wwwtest
>
> I can not get php to double the back slashes no matter what I do!
>
> $string = str_replace("\\", "\\\\", $string);
This "should" have worked, for \, but there are other characters to worry
about...
So you must have made a typo or something when you tried this.
--
Like Music?
http://l-i-e.com/artists.htm
Navigation:
[Reply to this message]
|