PHP表单案例
程序员文章站
2022-05-29 22:55:34
...
index.php:
if (isset($_POST['userValue'])&&!empty($_POST['userValue'])) {
echo"您输入的是".$_POST['userValue'];
}
else {
echo"没有接收到post值";
}
?>htmllang="zh-CN">head>metacharset="utf-8">