Hi,
I've got a script that I am calling through and image tag so that I can pass javascript variables:
document.write('<img src=\"myscript.php3?'+java_var+'\">
This works great, however if I go to my next page (which contains the same img/script) it loads the image without executing the script.
How can I make it load the image every time, not just the first time. I considered just tacking a random number to the php script url so that the actual url would be different each time. Any thoughts?
Thanks