页面不跳转怎么办
<html>
<head></head>
<body>
<form action="do.php" method="post">
<table>
<tr>
<td>名称</td>
<td><input type="text" name="username" id=""></td>
</tr>
<tr>
<td >密码</td>
<td><input type="password" name="password" id="" ></td>
</tr>
<tr>
<td >邮箱</td>
<td><input type="email" name="email" id=""
></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="提交">
<input type="reset" value="重置">
</td>
</tr>
</table>
</form>
</body>
</html>
<?php
header('content-type:text/html;charset=utf-8');
//接收表单发送过来的数据
//$_POST接收表单以post形式发送过来的数据,$_POST['名称']
echo 'this is a test';
echo '用户名:',$_POST['username'],'<br/>';
echo '密码:',$_POST['password'],'<br/>';
echo '邮箱:',$_POST['email'],'<br/>';
这是我分别在自己的电脑上写的,还是跳转不了
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 626 份
- 解答问题 4930 个
想要学好Web后端开发的中流砥柱语言,本阶段为你轻松铺就扎实的基础,从前端网页布局的搭建到后台PHP开发,助你从零基础到掌握主流开发语言。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星