I am trying to do this:
str_replace("/", "\", $row['multimedia']);
PHP tries to escape the " because of the .
I tried to do:
str_replace("/", "\"", $row['multimedia']);
PHP then replaces the / with a ". Does anyone know how to use a \ as the replacement char?