在同一页面上提交数据

时间:2014-04-11 17:29:56

标签: php html

我正在尝试在同一页面中提交数据。但它没有进入if语句。

所以我让这个表单很容易测试,但仍然没有发生。有人请告诉我我做错了什么。

当我点击提交时,它会显示网址中的所有数据,而不是打印"hello"

http://domainname/student_system/stud_attendance_report.php?stud_name=KUMAR+RAI&enroll_no=1993%2FVII%2FB%2F2003-2004%2F0&class=&section=&submit=Search

这是我的表格

<?php
include ("header.php");
if(isset($_POST['submit']))
{
    echo "hello";
}
?>
<div id="container">

<form metohod="post" action="">
<input type="text" id="stud_name" name="stud_name" />
<input type="text" id="enroll_no" name="enroll_no" />
<input type="text" id="class" name="class" />
<input type="text" id="section" name="section" />
<input type="submit" name="submit" value="Search" />
</form>

</div>

1 个答案:

答案 0 :(得分:5)

你拼写错误method

<form metohod="post" action="">

应该是

<form method="post" action="">