当然你也可以 打印 $_REQUEST 数组 这里面 包括 get方式和post方式所有的参数
test.php页面
判断该页是否提交,如果提交了,就按照正常的接受数据来就行了。
<?phpif($_POST){
$words = $_POST["words"]
if ($words) {
echo "收到"
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form action="test.php" method="post">
<input type="text" name="words">
<input type="submit" name="" value="提交">
</form>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)