欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php中如何在同一页面下接收表单数据

程序员文章站 2024-02-14 20:10:52
...

在同一个页面下的代码:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="2.php">
  <label for="name">name</label>
  :
  <input type="text" name="name" id="name" />
<!-- <input type="submit" name="button" id="button" value="提交" />-->
      <input name="Button2" type="submit" class="btn_grey" id="Button2" onClick="window.location.href='2.php'" value="完成借阅"></td>
</form>
<?php

	echo 'a:'.$_POST[name];

?>
</body>
</html>

上面的代码中,最重要的是把按钮的type设置为submit,如果是button是接收不到数据的!

更多相关教程请访问 php编程从入门到精通全套视频教程

相关标签: PHP,表单数据