[PHP-WIN] a little question

2005-03-07 Thread Kurlic
hi all! can someone tell me how i upload and download files to / from a mysql db? thank u ^_^ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Session Variables

2005-03-07 Thread Richard Duval
Newbie question, sorry but I've searched everywhere and can't seem to find the answer... Session variables...should be able to define in one page, call the next page and have it available there as well right? I can print out the session varialble in the page it was created, no problem Then I c

RE: [PHP-WIN] Session Variables

2005-03-07 Thread Mike
You need to make sure that in your second page that you're starting the session - if you don't do this then that second page will never have access to those session variables. -M > -Original Message- > From: Richard Duval [mailto:[EMAIL PROTECTED] > Sent: Monday, March 07, 2005 7:05 PM

Re: [PHP-WIN] Session Variables

2005-03-07 Thread graeme
Also use $_SESSION rather than HTTP_SESSION_VAR. Mike wrote: You need to make sure that in your second page that you're starting the session - if you don't do this then that second page will never have access to those session variables. -M -Original Message- From: Richard Duval [mailto

Re: [PHP-WIN] Session Variables

2005-03-07 Thread Armando
Only use $_SESSION if you're running PHP 4.1.0 or higher as in previous versions it's not available as a global variable. Check this link on PHP for more info on session: http://ca3.php.net/manual/en/ref.session.php Cheers. Armando graeme wrote: Also use $_SESSION rather than HTTP_SESSION_VAR. M