php script request frequently specific web page
Posted
by Alaa
on Stack Overflow
See other posts from Stack Overflow
or by Alaa
Published on 2010-05-19T13:21:41Z
Indexed on
2010/05/19
13:40 UTC
Read the original article
Hit count: 246
php
i need php script running on my server frequently request a web page i thought of php header, with meta tag (refresh) but that's will not success, because header will redirect me once to the url then the refresh will stop.
<?php
header('Location: http://www.example.com/');
?>
<html>
<META HTTP-EQUIV=Refresh CONTENT="60">
</html>
any suggestion please;
© Stack Overflow or respective owner