I am working on a user registration / login php script and am using cookies so I can reuse information. I know about the "header" command, but is there any way to refresh a page after the tag has already been put in place?
Thanks in advance.
That would be the HTML tag...
you could always add <head http-equiv='refresh ....> into you final doc 🙂 cheers, AlCapone
I meant using php...not html. I tried that anyway, and thats not what I'm trying to accomplish. I need to reload the page once, at a specific time. That META command just continuously reloads.
Once any page is loaded into a web browser PHP no longer has any access to the page. It is ALL server parsed.
You have to use javascript to refresh your page.