I am using this code to set up redirects and clear my referring information. But I want to be able to make the refresh occur after say a two second wait, so I can throw in some more code to stuff a few cookies while they wait, can anyone show me what changes I would need to make in order to do this?
Thanks
Code:
<?php
echo '<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=http://' . $HTTP_GET_VARS['go2url'] . '">';
?>
Thanks