Posted by Peter Van Hove on 06/03/05 15:42
A currently existing page is handed a value like this:
page.htm?code_value
in the html of that page :
<script type="text/javascript">
code = (self.location.search) ? self.location.search.substring(1) :
"none";
if (code == "code_value")
{
// build url ...
}
</script>
I want to change the js to php ... but how do I get the code value ?
because, if I understand correctly, php would expect ?code=value
Navigation:
[Reply to this message]
|