3

HTMLの入力タイプの値をphpに取得できない場所で立ち往生しています。Aptana を使用して Web サイトを開発しています。

スタックオーバーフローでも有効な答えが見つかりませんでした。

ブラウザで 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

/// get の代わりに post を使用すると機能します

私はあなたのコードを投稿して試してみて、メソッドを取得してうまく動作しました.xamppでコードを試すか、aptanaとは異なるコードを試してください.

于 2013-02-11T20:31:42.980 に答える