I found a previous post interesting. Why does the following example not work, and what can be added or removed to make it work?
<?php
if (isset($myvariable_shouldnt_change))
{
echo $myvariable_shouldnt_change;
}
else
{
$myvariable_shouldnt_change = date("njis");
}
echo $myvariable_shouldnt_change;
?>
//at this point, you should be able to reload the page as many times as you want and the variable "$myvariable_shouldnt_change" should stay the same! But it doesn't
Thanks