> What is the '===' ?
> 

You can not only compare if the content of two variables
is the same ($a == $b) - you can also compare the type (integer, float...)

$a = 1;
$b = 1;

$a == $b -> TRUE

$a = "1";
$b = 1;

$a === $b -> FALSE  because $a is a STRING and $b is a INTEGER!

-- 
phpArbeitsgruppe in Gruendung - Jochen Kaechelin
Stuttgarter Str.3, D-73033 Goeppingen
Tel. 07161-92 95 94, Fax 07161-92 95 98
http://www.php-arbeitsgruppe.de, mailto:[EMAIL PROTECTED]


Reply via email to