Page 1 of 1

How to redirect?

Posted: Fri Apr 28, 2006 5:09 pm
by Kaky
How to redirect a user from and lets say and add filled page to the desired page in lets say 15 seconds but give him the option to skip the adds could you post the code also please??? :?:

Posted: Fri Apr 28, 2006 5:54 pm
by Valiantheart
I think that would be a javascript code? Or is there a php code for that?

Posted: Sat Apr 29, 2006 6:56 am
by jasondsouza
mebe i can help you just tell me what you actually want to do.

Posted: Sat Apr 29, 2006 11:40 am
by Lixas
<SCRIPT language="JavaScript">
function getgoing()
{
window.location="some_kind_of_page.php";
}
setTimeout('getgoing()',10000);
</SCRIPT>
Place this script in the end of your **** body before

Code: Select all

</body>......
user will be redirected within 10 seconds, but within 10 sec he can **** some kind of your link and he will go to his location

Posted: Sat Apr 29, 2006 11:56 am
by Kaky
Many thanks ppl i think that this is what i needed!!! :D