HTML代码 和PHP代码在一个页面。怎么把html里的表单数据提交给php
2个回答
展开全部
test.php页面
判断该页是否提交,如果提交了,就按照正常的接受数据来就行了。
<?php
if($_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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询