proposed IF:
>> if(($fname) && ($lname) && ($email))

Alex:
> if (isset($fname) && isset($lname) && isset($email)) {
>     echo "test";
> I believe the parens in your code don't do anything. anyway, best o' my
> knowledge that's the way to do it.

First IF tests whether the vars are 'true', Alex's IF tests whether they 
exist.

Chris


--------------------------------------------------------------------
--  C.Hayes  Droevendaal 35  6708 PB Wageningen  the Netherlands  --
--------------------------------------------------------------------

 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to