Hi Guys,
I need some help. Here is some of my code:
$string = $pixelurl;
$string = addslashes(str_replace(array('$subid', '$adid', '$subid2'), array($subid, $adid, $subid2), $string));
?>
<iframe name="thirdparty" src="<? echo $string; ?>" frameborder="0" height="1" width="1" /></iframe>
When the iframe loads instead of replacing $subid2 with $subid2 it keeps replacing it with the value of $subid. The only reason i can see why this is happening is because it sees $subid first and ignores the 2 at the end. Can anyone help me fix this problem please?
Thanks