Forum Moderators: open
www.domain..com/index.html?page=marloncs
i need read the value of page for print in index.html page....
this page cant be php... is html...
how i can be?
tks!
If the search string will definately be of form,?page=.... then you can get the value like this.
<script> alert(location.search.unescape().replace("?page","")) </script>