3

我被困在一个地方,我无法将 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> 

但它没有打印值。

4

1 回答 1

-3

/// 如果你使用 post 而不是 get

我使用 post 和 get 方法尝试了您的代码并且运行良好,您需要尝试 xampp 中的代码或其他与 aptana 不同的代码,该代码有效,可能与 aptana 服务器配置有关

于 2013-02-11T20:31:42.980 回答