I need a PHP script running on my server to frequently request a web page.
I thought of using the PHP header
function combined with a meta refresh tag, but that won't work because the header will redirect to the URL immediately, and the meta refresh will never execute.
<?php
header('Location: http://www.example.com/');
?>
<html>
<META HTTP-EQUIV=Refresh CONTENT="60">
</html>
Does anyone have any suggestions for how to do this please?