Hi,
I am trying to redirect a page. I need to show the result of a process for 7 seconds then I would like the server to stream a new location to the client.
So far what I have is something more or less like this (including the missing parts ;-) )
echo $feedback;
echo 'You will be redirect in a few seconds. You can get there directly by clicking <a href=\"$uri\">here</a>.";
[some code I do not know that should make the server wait]
header("Location: $uri");
exit;
Can any guru help me fill the blank between the square brackets?
thx,
D.