Hi!
I have the following problem:
From 2 text files I get 2 variables with:
$fp = @fopen ("category.txt", "r");
if ($fp) {
while(!feof($fp)) {
$lines[] = fgets($fp);
}
fclose($fp);}
The second is the same but from another file.
If I compare the 2 variables with:
if($lines[2] == $other[4]) echo "the same";
That doesn't work and I do not know why..
Can somebody help?
regards
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.