Home > php教程 > php手册 > body text

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

PHPz
Release: 2018-09-30 16:06:37
forward
1432 people have browsed it

在同一个页面下的代码:

<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>
Copy after login

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

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

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!