I am trying to autoreload my page after every 20 seconds. I am using JavaScript for this instead of the .
I have
and here is
window.location will include the GET parameters that were that was passed.
function SetTimer(){
setTimeout('window.location.replace(window.location)', 20000)
}
If you are submitting parameters through POST, the best method will probably be to create a form with hidden inputs for each parameter. Submit the form every twenty seconds.