PHP执行完之后,如何返回主页面
这是我的程序<html><body><p><strong>注册账号</strong></p><formaction="zhuce.php"method="post">us...
这是我的程序
<html>
<body>
<p><strong>注册账号</strong></p>
<form action="zhuce.php" method="post">
username: <input type="text" name="username" />
password: <input type="text" name="password" />
<input type="submit" />
</form>
<p><strong>登陆</strong></p>
<form action="denglu.php" method="post">
username: <input type="text" name="username" />
password: <input type="text" name="password" />
<input type="submit" />
</form>
</body>
</html>
这个是主页面,有注册 还有登陆框
这个是zhuce.php
<html>
<body>
<?php
$con = mysql_connect("localhost","root","423904");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test",$con);
$sql = "INSERT INTO username (username,password)
VALUES
('$_POST[username]','$_POST[password]')";
if(!mysql_query($sql,$con))
{
echo "<script>alert('账号已经被人注册');</script>";
}
else {echo "<script>alert('注册成功')</script>";}
mysql_close($con);
?>
</body>
</html>
我现在的情况就是,在注册地方点击提交按钮之后,如果注册成功,跳出alert,然后页面就空白了,浏览器地址栏变成http://127.0.0.1:81/zhuce.php
现在我想按了注册按钮之后,依旧停留在主页面上,请问这要怎么实现呢?? 展开
<html>
<body>
<p><strong>注册账号</strong></p>
<form action="zhuce.php" method="post">
username: <input type="text" name="username" />
password: <input type="text" name="password" />
<input type="submit" />
</form>
<p><strong>登陆</strong></p>
<form action="denglu.php" method="post">
username: <input type="text" name="username" />
password: <input type="text" name="password" />
<input type="submit" />
</form>
</body>
</html>
这个是主页面,有注册 还有登陆框
这个是zhuce.php
<html>
<body>
<?php
$con = mysql_connect("localhost","root","423904");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test",$con);
$sql = "INSERT INTO username (username,password)
VALUES
('$_POST[username]','$_POST[password]')";
if(!mysql_query($sql,$con))
{
echo "<script>alert('账号已经被人注册');</script>";
}
else {echo "<script>alert('注册成功')</script>";}
mysql_close($con);
?>
</body>
</html>
我现在的情况就是,在注册地方点击提交按钮之后,如果注册成功,跳出alert,然后页面就空白了,浏览器地址栏变成http://127.0.0.1:81/zhuce.php
现在我想按了注册按钮之后,依旧停留在主页面上,请问这要怎么实现呢?? 展开
6个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询