something simple but cant find the answer :/
Posted: Thu Oct 21, 2004 5:59 pm
how can i change a / to a \ in my php script ?
JynxI
JynxI
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$string = "////////";
$string = str_replace("/", "\", $string);
echo $string;