ログインフォームとそれに対応するデータベースがあります。ここでログインした後に無効なユーザー名/パスワードを表示するためにelseブロックを使用したいタイトル。どこかのhtmlフォームで私のphpコードのelseブロックを使用する方法
<?php
require "connect.inc.php";
if(isset($_POST['username'])&&isset($_POST['password']))
{
$username=$_POST['username'];
$password=$_POST['password'];
if(!empty($username)&&!empty($password))
{
$query="SELECT id FROM sch_user WHERE username='$username' AND password='$password'";
if($query_run = mysql_query($query))
{
$num_rows=mysql_num_rows($query_run);
if($num_rows===1)
{
header("Location:index.html");
}
?>
<head>
<title>Brilliant Educational Society</title>
<link rel="stylesheet" href="homepage.css">
<link rel="stylesheet" href="branch_login.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
<table id="container" border=0">
<tr><td>
<table id="title_container" border=0 width=100%>
<tr>
<td style="width:90px;"><div id="logo"><img src="logo.jpg" style="height:70px;width:70px;margin-left: 10px;"></div></td>
<td><div id="title" style="color:maroon"><b><i>Brilliant Educational Society</b></div></td></i>
<td style="width:200px"><div id="contact">Contact 9030059263</div><br /><br />
</div>
</td>
</tr>
</table>
<tr><td>
<table id="menu_container">
<tr><td><ul id="menu">
<li id="home"><a href="index.html">Home</a></li>
<li id="academics"><a href="#">Academics</a></li>
<li id="staff"><a href="#">Staff</a></li>
<li id="about_us"><a href="#">About us</a></li>
</ul>
</td></tr>
</table>
</td></tr>
<tr><td> </td></tr>
<tr><td> </td></tr>
<tr><td>
<table id="login_form" border=0>
<tr><td><label id="login_title">Login here</label><br />
<?php
else
{
echo 'Invalid Username/Password';
}
}
}
else
{
echo 'Please provide both Username and Password';
}
}
?>
</td></tr>
<tr><td><form action="branch_login.php" method="post"><br />
<label id="user">Username</label><input style="margin-left:20px" type="text" name="username" size="20"/><br /><br />
<label id="pass">Password</label><input style="margin-left:20px" type="password" name="password" size="20"/><br /><br />
<input style="margin-left:215px;background:orange;width:80px;height:30px;font-family: Times New Roman;font-size:20px" type="submit" value="Login >>"/>
</form></td></tr>
</table>
</td></tr>
</table>
</body>