Possible Duplicate:
PHP: Pass non-form variables between pages?
I have problem with passing data dynamically populated. The code below dynamically display the restaurant hours of operation. Now I want to pass this hours into new page.
while ($start <= $end)
{
$startIn = strtotime('+0 minutes',$start);
$hourIn = ( date('h:ia', $startIn));
//dispaly restaurant availability
echo "<td id='td'>"."<a href='$resName.php' style='text-decoration: none;'>" . $hourIn ."</a>". "</td>";
$start = strtotime('+30 minutes',$startIn);
}