You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
5 years ago
|
<?php
|
||
|
|
||
|
header("Access-Control-Allow-Origin: *");
|
||
|
|
||
|
$page = $_SERVER['PHP_SELF'];
|
||
|
|
||
|
$now = time();
|
||
|
$today = strtotime('3:00');
|
||
|
$tomorrow = strtotime('tomorrow 3:00');
|
||
|
if (($today - $now) > 0) {
|
||
|
$refreshTime = $today - $now;
|
||
|
} else {
|
||
|
$refreshTime = $tomorrow - $now;
|
||
|
}
|
||
|
|
||
|
header("Refresh: $refreshTime; url=http://localhost/covid_19/services/get_data_from_url.php");
|
||
|
|
||
|
?>
|