如何获取html的输入类型文本的值到php并打印

时间:2013-02-11 20:24:05

标签: php html

大家好我最近开始使用php而且我被困在一个我无法获得输入类型的html到php的值的地方。我正在使用Aptana开发一个网站。 请告诉我在哪里或者我做错了什么。 我也没有在stackoverflow中找到任何有效的答案。 请帮帮我。

我只是在我的浏览器中查看HTML文件是一个问题吗?

我的代码如下

FirstWebPage.html

<!DOCTYPE html>
<html>
<body bgcolor="#ffffff">
<h1 style="font-size:44pt" align="center">myPersonals.com</h1>

<h2 align="center">Welcome to your personal data center </h2>
<form action="welcome.php" method="get">
<div align="center">
<h3>Login</h3>
<input style="height:20px; width:200px; font-size:14pt" type="text" name="email" placeholder="Email" style="#b8b9c8">
<br>
<br>
<input style="height:20px; width:200px; font-size:14pt" type="text" name="password" placeholder="Password">
<br>
<br>
<select name="sex" style="height:30px; width:200px; font-size:14pt">
<option value="m">Male</option>
<option value="f">Female</option>
</select>
<br>
<br>
<input style="height:30px; width:200px; font-size:14pt" type="submit" value="Submit">
<br>
</div>
</form>
<a href="bigDB.jpg">
<img src="smallDB.jpg">'
</a>
</body>
</html>  

这是我的welcome.php

 <html>
 <body>
 Welcome php Surendra Reddy your email id is <?php echo $_GET['email']; ?><br>
 and you are password is <?php echo $_GET['password']; ?><br>
 and your gender id <?php echo $_GET["sex"]; ?>
</body>
</html> 

但它没有打印值

提前完成

1 个答案:

答案 0 :(得分:-3)

如果您使用post而不是

///将起作用

我尝试使用post和get方法运行你的代码并且运行良好,你需要尝试xampp中的代码或者aptana的代码,代码可以运行,可能有些关于aptana服务器配置