I have a file and there is a number (x) into it, for example 1:
$x = fgets($number);
echo $x;
1 is the output
now I want to compare that number with another number:
$x = fgets($number);
$y = 1;
if ($x == $y)
echo "O.K";
else
echo "not O.K";
But the output is not O.K.
Any idea why this is so?
echo ((int)fgets($number)?'':'not ').'O.K';– GigaWatt Jan 18 '12 at 20:33