对于我的 html 文件,我在 index.php 中有这个:
<?php
$go = $_GET['go'];
if(!empty($go)) {
if(is_file("page/$go.html")) include "page/$go.html";
else echo "<br />Page doesn't exist yet, we're working on it :-(";
}
else include "page/start.html";
?>
我现在想以相同的方式包含一个带有表单的 php 文件。我这样要求一种形式:
<form name='add_position' method="post" action="page/pr_edit.php" >
然后带有验证的整个表单在 pr_edit 文件中:
if (isset($_POST['add_position'])) {}
目前该表单在新窗口中打开,我需要将其作为其余的 html 文件包含在我的主 div 中。
正确的方法是什么?我应该将名称更改为 pr_edit.html 吗?它给了我想要的效果,但我不确定它是否正确,因为所有验证都是这个文件?