Once a survey has been submitted via post it is sent to another php page. This page I want it to redirect to the index after 5 seconds or user clicks on the links (see code below):-
<meta http-equiv="Refresh" content="5;url="index.php">
<p>Thanks for the feedback, you will now return to the main page in 5 seconds <a href="index.php">Home</a></p>
However using the url tag I believe it would have to be an absolute address as it would appear physically in the url bar.
How can I use a relative address (As attempted in the code)?
Thanks
|