...一进入页面就弹出提示用户名不能为空,如何解决
发布网友
发布时间:2024-10-08 01:26
我来回答
共1个回答
热心网友
时间:2024-10-08 03:23
你这样写当然啦,每次页面打开都执行了这句话,当然弹出
<form name="forml" action="?act=regst" method="post">
if($_GET["act"]=="regst"){
$username=$_POST["txt_username"];
........
if($pwd1!=$pwd2)
{
echo "<script>alert('两次输入密码不一致');</script>";
}
改成这样就不会了