我有一个表单,发送时会打开另一个 php 文件。我想获取表单信息,并创建一个表格,但如果有人写了表格中的某个单词,代码应该回显“对不起”。代码的第一部分正在工作,它获取表单,并在 index.php 中创建一个表,但是当我创建相同的表单时,它再次发送:S 我如何更改它?
<?
$original_list = file_get_contents("index.php");
$file = fopen("index.php","w") or exit("Unable to open file!");
$since = $_POST["since"];
$since2 = "<tr><td class=\"since\"> $since </td><br/>";
$user = $_POST["user"];
$user2 = "<td class=\"content\"> $user </td><br/>";
$due = $_POST["due"];
$due2 = "<td class=\"due\"> $due </td></tr>\n";
if (strpos("index.php","word") === true) {
echo "Sorry"
}elseif ($_POST["since"] <> "");{
fwrite($file,"$since2$user2$due2$original_list");
}
fclose($file);
?>