hello i have developed this code
page1.php
<META HTTP-EQUIV="Refresh" CONTENT="0; url=page2.php">
--
page2.php
$referer = $_SERVER['HTTP_REFERER'];
echo $referer;
$query = parse_url($referer, PHP_URL_QUERY);
parse_str($query, $queryArr);
$id = $queryArr['id'];
echo '<br>';
echo $h;
so when i need to try the code i go to the link domain.com/page1.php?id=83
in chrome its shown
domain.com/page.php?id=83 83
and i firefox, internet explorer its shown nothing just a blank page i want to know how can i fix this code so its work on all browsers