I found two ways to update PHP content:
1. Using meta HTML:
echo("<meta http-equiv='refresh' content='1'>"); //Refresh by HTTP 'meta'
2. Using the PHP refresh rate:
$delay = 0; // Where 0 is an example of a time delay. You can use 5 for 5 seconds, for example! header("Refresh: $delay;");
Thanos Nov 04 '14 at 16:24 2014-11-04 16:24
source share