Strange If
Posted: Fri Aug 10, 2007 4:24 am
Why the result of the following "if-statement" is true?
Code: Select all
<?php
$x = 0;
if ($x == "salam") echo "Oops!";A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
$x = 0;
if ($x == "salam") echo "Oops!";