Session variables maybe

Respectfully,
Ligaya Turmelle



devil_online wrote:
Hi have this code, that I print two or more things ate a diferente time, and
the page refreshs after 10 seconds.

<head>
    <meta http-equiv="refresh" content="10">
</head>
<body>
<?php
$hour = 21;
$minute = 06;
if(date('H')==$hour AND date('i')==$minute)
{ echo "hi how are you."; }
$hour = 21;
$minute = 07;
if(date('H')==$hour AND date('i')==$minute)
{ echo "are you fine?"; }
?>

however it is possible to keep in the page the information that was printed?

thanks


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to