How to refresh a page?

To do a refresh, you can use HTML meta tag such as :

 [META HTTP-EQUIV=Refresh CONTENT='10; URL=example.php']

Change the brackets to the obvious brackets, [ become <
That'll refresh to example.php in ten (10) seconds. It's also worth
mentioning that various predefined variables exist that reflect the
current page, run phpinfo() to see which exist on your system.
A commonly used one is called as $PHP_SELF For example, let's say we
wanted to refresh a page every 10 seconds forever (not suggested :-)
then :
[?php

if ($_POST['go'])
{

$url = $_POST['url'];

echo "content='4; url=$url'>";

?]

Change the brackets to the obvious brackets, [ become < for PHP tag
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

I'm new to PHP, where should I start?

Well, try this.The official PHP web site as a lot of useful information:   ...

What's the best way to start writing a PHP program?

Firstly figure out, on paper, exactly what you want to do. Otherwise, you'll just be coding...

How can I call a command line executable from within PHP?

Check out the "Program Execution functions" here :...

How can I take a list and make each row a value in an array?

If you have a text file that looks like this : john|orange|cow sam|green|goat...