Try taking a look at this tutorial for PHP.
http://www.php.net/manual/en/tutorial.php
- Original Message -
From: "Christian Ista" <[EMAIL PROTECTED]>
To: "'php list'" <[EMAIL PROTECTED]>
Sent: Tuesday, August 13, 2002 10:32 AM
Subject: RE: [PHP]
> First of all, you need to use the $_* superglobals if register_globals
is
> off. That is, to access get variables, you use $_GET['variable_name']
What do you mean by that ? (I'm newbie in PHP)
Bye
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/u
First of all, you need to use the $_* superglobals if register_globals is
off. That is, to access get variables, you use $_GET['variable_name']
To check if the variable is set, use the isset function.
if (IsSet($_GET['variable']) {
// code
}
else {
//error
}
- Original Message -
From:
3 matches
Mail list logo