从表单POST获取响应

时间:2010-10-14 13:13:06

标签: php html

我看起来遍布整个网络可能是一项普通而简单的任务,并且除了前端之外什么都没找到。我正在尝试从我自己的html页面获取响应,该页面使用POST将数据提交到网站,以便我可以解析它并在同一个html页面上显示/打印已解析的文本。 这是我的html页面的样子:

    <html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<form 
 method="post" 
 action="http://somesite.com" 
 enctype="multipart/form-data">
 <input type="hidden" name="function"  value="login">
 <input type="text"   name="username"  value="client">
 <input type="text"   name="password"  value="qwerty">
 <input type="file"   name="upload">
 <input type="text"   name="upload_to"   value="0">
 <input type="text"   name="upload_type" value="0">
 <input type="submit" value="Send">
</form>
</head><body></body></html>

3 个答案:

答案 0 :(得分:0)

只需<?php echo $_POST['username']; ?>

答案 1 :(得分:0)

使用预定义变量$ _POST

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<form 
 method="post" 
 action="" 
 enctype="multipart/form-data">
 <input type="hidden" name="function"  value="login">
 <input type="text"   name="username"  value="client">
 <input type="text"   name="password"  value="qwerty">
 <input type="file"   name="upload">
 <input type="text"   name="upload_to"   value="0">
 <input type="text"   name="upload_type" value="0">
 <input type="submit" value="Send">
</form>
<?php if("Send" == $_POST['submit']){ var_dump($_POST); } ?>
</head><body></body></html>

答案 2 :(得分:0)

建议您阅读http://www.php.net/form,因为它包含示例和好评。当您调用字段用户名和密码时,我猜您可能也在查看数据库连接,请小心SQL注入(http://php.net/manual/en/security.database.sql-injection.php)。 / p>