0
私は適切なログイン画面を作ろうとしていますので、mysiteをクリックするとログイン画面が表示され、ログインした後に実際のページが表示されます。 通常のコードは、このログインページ(html)
<form action="hello.html" method="POST">
<input type="text" placeholder="username" name="username"><br />
<input type="password" placeholder="password" name="password"><br />
<input type="submit" name="submit" value="Connect" />
</form>
<?php
if(isset($_POST['submit'])){ //when user click connect
if(!empty($_POST['username']) && !empty($_POST['password'])){
if ($_POST['username']=="guest" && $_POST['password']=="pwrd"){
header("Location:home.php");
} else {
echo "check the password and username";
}
} else {
echo "fill all the inputs";
}
} 14:50 09/10/2016
これはPHPで作成する必要がありますhtml –
あなたの質問は何ですか? –
はい、皆さん大変おばあちゃん –