Hey all, I'm wondering if there is a way to redirect a user to another page after so many seconds. I tried using META redirection, but all it does is refresh the page, not send the user to the page I set as the URL in the meta tag.
I know about the header() function, but I looked at the documentation and there doesn't seem to be a way to set, say, a 5 second interval before redirecting. The URL is actually being generated dynamically so I can put information from a database into the URL. Kinda like this:
printf("<a href=\"reviews.php?mode=view&id=%d\"", dbRow['id']);
I'm sure you get the idea. I need to dynamically create the URL, then redirect the user to that page after 5 seconds. Any tips? I did a search on the forum, but I'm not sure if I used the right terms, so if this has been answered before, please provide a link.
Also, I'm notorious for missing things right in front of my face. Feel free to make me feel sufficiently stupid for missing something that should be self-evident. I'm used to it. :p
Thanks in advance.
James