Try:
sleep(3);
$myurl = "http://jsfree.com";;
print("window.location = '$myurl';
");
Works for me,
Jeremy Schreckhise
"Jim MacDiarmid" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Is there a way to programmatically
You could also do:
$daystosubtract = 3;
$mydate =
(date("m/d/y",mktime(0,0,0,date("m"),date("d")-$daystosubtract,date("Y";
Jeremy Schreckhise
"Jason Barnett" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Ron H
local variable and a SESSION variable named the same?
Jeremy Schreckhise
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> try, session_unset('session_var_name'),
>
> Tryst
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
SESSION data. This works great except when I try to unset the SESSION
variables their contents remain. So if my user refreshes or navigates to
the page at a latter time with the same session id the form pre-populates,
which is undesirable.
Here is the Code. Thanks for any help.
Jeremy Schreckhise