フォーム情報を取得できない理由を専門家に教えてもらえますか?オンラインで待機中
if($submit=="submit"){
$username=$_post[ユーザー名];
$password=$_post[パスワード];
}
?>
<?php $submit=$_POST['submit']; if($submit=="送信"){ $ユーザー名=$_POST['ユーザー名']; $password=$_POST['パスワード']; <br /> <br /> <br /> echo "管理者: $username" // 後のセミコロンに注意してください。 <br /> <br /> <br /> echo "パスワード: $password"; } ?> <form action="php.php" method="post" name="form1"> 管理者: <input type="text" name="ユーザー名" /> パスワード: <input type="text" name="password" /> <input type="button" name="submit" value="Submit" /> </フォーム> <div class="clear"></div>