当前位置:Gxlcms > PHP教程 > PHP表单案例

PHP表单案例

时间:2021-07-01 10:21:17 帮助过:9人阅读

index.php:

if (isset($_POST['userValue'])&&!empty($_POST['userValue'])) {
  echo"您输入的是".$_POST['userValue'];
} 
else {
  echo"没有接收到post值";
}
?><htmllang="zh-CN"><head><metacharset="utf-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1"><title>musictitle><linkrel="stylesheet"href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">head><body><divclass="container"><formaction=""method="post"><divclass="input-group input-group-lg"><inputtype="text"class="form-control"name="userValue"placeholder="传到本页面"><spanclass="input-group-btn"><inputtype="submit"class="btn btn-default"value="GO!">span>div>form><formaction="demo.php"method="post"><divclass="input-group input-group-lg"><inputtype="text"class="form-control"name="userValue"placeholder="传到另一个页面"><spanclass="input-group-btn"><inputtype="submit"class="btn btn-default"value="GO!">span>div>form>div><scriptsrc="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js">script><scriptsrc="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js">script>body>html>

demo.php:

if (isset($_POST['userValue'])&&!empty($_POST['userValue'])) {
  echo"您输入的是".$_POST['userValue'];
} 
else {
  echo"没有接收到post值";
}
?><metacharset="utf-8">

版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了PHP表单案例,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行