Hi,
can someone give me a tip how to exchange backslashes by slashes and append a slash to a string.
eg.
$a = "c:\hallo" (coming from an input form)
--> should be
$a = "c:/hallo/"
I tried with
str_replace(chr(47),'/','$a');
but it did't work.
Cu,
gabriel