I'm doing an upload Script; and I cannot turn C:\Folder\file.htm into C:\Folder\file.htm !!! Please help me turn Single Strip Slashes into Double!! -Steven
Just use addslashes(). Something like this: $location = addslashes("C:\folder\whatever\");
$location="c:\folder\file.html"; $location=ereg_replace("\", "\", $location);
Di
I tried that once; and it didn't work. addslashes works.