[PHP-WIN] Re: Timed redirection

2005-01-31 Thread Jeremy Schreckhise
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

[PHP-WIN] Re: Date Help Needed

2005-01-31 Thread Jeremy Schreckhise
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

Re: [PHP-WIN] unset Not working as expected

2005-01-24 Thread Jeremy Schreckhise
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

[PHP-WIN] unset Not working as expected

2005-01-24 Thread Jeremy Schreckhise
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