Re: [PHP] Retrieving parameters passed from .html...?

2007-04-11 Thread Richard Davey
tedd wrote: I wouldn't recommend using $_REQUEST -- it can be problematic in a couple of ways. 1) You don't know where the data came from; 2) One (GET or POST) takes precedence over the other -- I don't remember which at the moment. 2) It depends on your php.ini setting, specifically: varia

Re: [PHP] Retrieving parameters passed from .html...?

2007-04-11 Thread tedd
At 2:48 PM +0200 4/11/07, clive wrote: itoctopus wrote: yup, $_GET to get stuff from the URL $_POST to get stuff from the form $_SESSION to get stuff from the session $_FILES in case you have files in your form, they will be stored here and $_REQUEST to get $_GET, $_POST, and $_COOKIE all in

Re: [PHP] Retrieving parameters passed from .html...?

2007-04-11 Thread Stut
clive wrote: itoctopus wrote: yup, $_GET to get stuff from the URL $_POST to get stuff from the form $_SESSION to get stuff from the session $_FILES in case you have files in your form, they will be stored here and $_REQUEST to get $_GET, $_POST, and $_COOKIE all in one If you're going to s

Re: [PHP] Retrieving parameters passed from .html...?

2007-04-11 Thread clive
itoctopus wrote: yup, $_GET to get stuff from the URL $_POST to get stuff from the form $_SESSION to get stuff from the session $_FILES in case you have files in your form, they will be stored here and $_REQUEST to get $_GET, $_POST, and $_COOKIE all in one -- PHP General Mailing List (http:/

Re: [PHP] Retrieving parameters passed from .html...?

2007-04-11 Thread itoctopus
yup, $_GET to get stuff from the URL $_POST to get stuff from the form $_SESSION to get stuff from the session $_FILES in case you have files in your form, they will be stored here -- itoctopus - http://www.itoctopus.com ""Anthony J. Maske"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECT

Re: [PHP] Retrieving parameters passed from .html...?

2007-04-10 Thread Lori Lay
Anthony J. Maske wrote: See... the second I sent this I took a sip of red-bull and my brain cleared up... $topicID = $_GET['showtopic']; Right? Yes. And if you have a form that uses the POST method, it would be $_POST['element']. Some of the other variables you will eventually need:

RE: [PHP] Retrieving parameters passed from .html...?

2007-04-10 Thread Robert Cummings
On Tue, 2007-04-10 at 20:38 -0700, Anthony J. Maske wrote: > See... the second I sent this I took a sip of red-bull and my brain cleared > up... > > $topicID = $_GET['showtopic']; Almost... Cheers, Rob. -- .. | InterJinn Applicatio

RE: [PHP] Retrieving parameters passed from .html...?

2007-04-10 Thread Anthony J. Maske
See... the second I sent this I took a sip of red-bull and my brain cleared up... $topicID = $_GET['showtopic']; Right? Anthony J. Maske [EMAIL PROTECTED] http://home.comcast.net/~ajmaske -Original Message- From: Anthony J. Maske [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10