了解自我引用表单

时间:2012-01-22 11:33:46

标签: php html forms

我正在努力学习Self Referencing Forms。我已经读过html脚本中嵌入的php表单是一种自引用表单。我仍然无法选择这个概念。我在php代码中看到的几乎所有表单都是使用html构建的。有没有更具体的自我引用表单,那么html脚本中只嵌入php表单?

1 个答案:

答案 0 :(得分:2)

你可能意味着这样的事情:

<?php
if (count($_POST)) {
echo 'You have submitted the string: '.$_POST['string'];
}
?>
<form action="" method="post">
<input type="text" name="string">
<button type="submit">Submit!</button>
</form>

空操作属性使浏览器将其提交到与加载的URL相同的URL。通过count($_POST),我们会检查表单是否已提交并采取相应措施。