Must be missing something here but str_replace isnt working for me, take this simple example,
Result is still the original url whereas it should be,PHP Code:<?php
$a = "http://somesite.com/index.cfm?&user=24706091";
$b = str_replace("&","&",$a);
echo $b;
?>
http://somesite.com/index.cfm?&user=24706091
![]()




Reply With Quote