Hi ppl...
I thought I could use the operator == to compare strings...Yet, when I run the above piece of code:
<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body bgcolor = "#ffffff">
<?
$x = 0;
if ($x == "Bugs in php4.0.4pl1<br>")
{
echo "This is a damn bug..."
};
?>
</body>
...yep...my code "told me" that it REALLY was a damn bug...
Is this really a bug ("" == 0) or I'm not suposed to use it this way (using function strcmp) ?
Thanks.