RE: [PHP] Newbie : How work with parameters?

2002-11-27 Thread Rich Gray
Stephane http://www.php.net/manual/en/security.registerglobals.php http://www.php.net/manual/en/faq.php Substitute 'fr' for 'en' if your prefer it en francais Use: $_GET['id'] or $_REQUEST['id'] Ciao Rich -Original Message- From: Stéphane Génin [mailto:[EMAIL PROTECTED]] Sent: 27 Novem

Re: [PHP] Newbie : How work with parameters?

2002-11-27 Thread Scott Houseman
Use the superglobal array $_GET echo $_GET{'id'}; // should return abc Cheers Scott Stéphane Génin wrote, On 11/27/2002 10:58 AM: Hello, I want to read the parameters in the URL, but I can't find the right way to do that. I've tried several things : my URL is: http://localhost/test.php?id=a

Re: [PHP] Newbie : How work with parameters?

2002-11-27 Thread Ernest E Vogelsinger
At 09:58 27.11.2002, Stéphane Génin said: [snip] >I want to read the parameters in the URL, but I can't find the right way to >do that. I've tried several things : > >my URL is: http://localhost/test.php?id=abc Check out the PHP manual at http://www.php.net