For example there is an index.php page is on the way
/var/www/vhosts/supply.com/httpdocs/supply-dev/test1/index.php How to access this page and update it automatically 2 times a day at intervals?
For example there is an index.php page is on the way
/var/www/vhosts/supply.com/httpdocs/supply-dev/test1/index.php How to access this page and update it automatically 2 times a day at intervals?
To the beginning of your PHP code. 10 number of seconds before the update.
header('refresh: 10'); Go to " any.php " in 10 seconds.
header('refresh: 10;url=any.php'); On JS
<script> window.rld=function() {window.location.href="http://site.ru" } window.setTimeout("rld()",100) </script> Source: https://ru.stackoverflow.com/questions/770868/
All Articles