Hi im trying to make a redirect to another page with delay after everything is enterd in a form but i have no ide sow far what to do..
i have tryd this but i executs to fast...
<?php
header("Location: userhome.php");
?>
<?php
echo $_SERVER['HTTP_REFERER'];
?>
and this, this works but it alsow executs to fast
<?
function redirect($url,$delay='0') {
print '
<meta http-equiv="refresh"
content="'.$delay.';URL='.$url.'">
';
}
redirect('newplace.php');
?>
if some body has any ides it should be help ful!