PHP无法获取文本文件内容

时间:2017-04-02 20:33:25

标签: php forms

我正在尝试为网站创建登录页面。登录仅供管理员使用,因此只有一个有效密码。登录页面本身是一个显示表单的.php文件,表单操作是第二个.php文件,用于检查提交的密码是否正确。由于我不想将正确的密码放在一个直接可见的地方,我已将其存储在服务器上的.txt文件中(我发现这远非安全,它是一个临时解决方案,但我想要的是现在)。表格在这里(login.php):

<!DOCTYPE html>
<html>
<body>
<form action="verify.php" method="post">
Password:<input type="text" name="pass">
<input type="submit">
</form>
</body>
</html>

这是verify.php:

<?php
$real = include("password.txt");
$pass = $_POST("pass");
//might do a session variable here but for now testing with echo to check if it works at all
echo $real;
echo $pass;
?>

OR

<?php
$real = file_get_contents("password.txt");
$pass = $_POST("pass");
//might do a session variable here but for now testing with echo to check if it works at all
echo $real;
echo $pass;
?>

然后,文件将比较两者以检查是否登录。

不确定使用哪种方法来获取txt文件内容,如果其中任何一种。目前,提交操作有效,但根本没有回应。如果有人知道我做错了什么,我会很感激反馈。谢谢。

0 个答案:

没有答案