我正在尝试编写一个代码,将文本文档中的值与表单中发布的值进行比较。
到目前为止,我已经得到了这个,但我绝对肯定我正在做一些事情。
在此先感谢您的帮助!
<form method="POST" action="file.php">
<p>
<br /><input type="text" name="name" ><br />
</p>
<p><input type="submit" value="Check" /></p>
</form>
<?php
if (isset($_POST['name'])) {
$name = $_POST['name'];
/*The text document contains these written names:
Michael
Terry
John
Phillip*/
$lines = file('names.txt');
$names_array = ($lines);
if (in_array($name, $names_array)) {
echo "exists";
} else {
echo 'none';
}
}
?>
更新:已修复,现在工作正常!