Is there an easy way to search a string and replace all backslashes with forward slashes?
Thanks
Justin
sure
$string = Str_replace ("\","/");
you may need to put 2 \'s but something like that should work
Why do you want to do this?
try:
$string = str_replace( "\", "/", $string );
hth stew
oops missed off the last bit sorry