Maison  >  Article  >  php教程  >  php中如何在同一页面下接收表单数据

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

PHPz
PHPzavant
2016-06-13 10:28:001400parcourir

在同一个页面下的代码:

<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=&#39;2.php&#39;" value="完成借阅"></td>
</form>
<?php

	echo &#39;a:&#39;.$_POST[name];

?>
</body>
</html>

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

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

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer