Thank you for your time. I am completely new to PHP and have very little experience so your patience and understanding is very much appreciated.
I am trying to create an exit page which I can display to my users for 5 seconds and then send them to a third party website.
I want to do this on the fly (for example exit.php?site=google.com)
I have tried the following code but it doesn't seem to work
<meta http-equiv="refresh" content="5; url="<?php
echo 'http://www.' . htmlspecialchars($_GET["site"]) . '/';
?>">
Any help is much appreciated :)