Forum Moderators: coopster
I have already outputted an html and did a validation using PHP. So, how can I redirect after the HTML page has been sent, say after 30 seconds after they've read that the registration is successful? Much like the way the Refresh works after a successful posting in WebmasterWorld?
how server tell client?
1. header location..
2. meta refresh
3. java script..
all the aboves may not be supported by client
u may need using 2/3
<meta http-equiv="Refersh" content="30; URL=http://..." />
setTimeout("window.navigate('..');", 30000);