我有这个 php 代码:
$flag = 0;
$f = fopen("1.txt", "r");
while (!feof($f))
{
$a = fgets($f);
$b = explode(",", $a);
if ($_POST['username'] == $b[0]&& $_POST['password'] == $b[1])
{
$flag = 1;
echo ("Correct");
break;
}
}
if ($flag == 0)
echo ("Incorrect");
fclose($f);
1.txt
文件是这样的:
1,1
2,2
3,3
4,4
5,5
我将数据发送到只有此代码的 php 页面,但我总是得到Incorrect
. 我不知道为什么如果不起作用!(我检查了$_POST['username']
,$_POST['password']
但一切都是正确的!)有人可以帮助我吗?