I have discovered a way around my previous question but I have run into another problem.
$testst = "<script language=JavaScript> document.write(test);</script>";
This will allow me to get the value of test from a simple javascript for my php script.
The problem I am having is trying to manipulate the data after receiving it.
test currently hold the value of
http://sae.slu.edu/proxy.php?addressid=http://merlin.missouri.edu/ovid/online?T=JS&MODE=ovid&PAGE=main&NEWS=N&D=b2a97
by using document.URL
I use strstr($testst,"=") in order to get
http://merlin.missouri.edu/ovid/online?T=JS&MODE=ovid&PAGE=main&NEWS=N&D=b2a97
however i get
=JavaScript> document.write(test);
How would i correct that?
Josh--