Ok I have a logout script and I'd like it to take the User after a set amount of time ( ie 10 seonds) to another page, any ideas? if someone could even let me know what to search for that would help.
Thanks.
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"> function doThings() { window.location.href = 'yourpage.php'; } setTimeout("doThings()",1000); </SCRIPT>
sleep()
Thank you, All sorted now