if(!isset($_POST["submit"])){ exit("错误执行"); }一直返回false 5
<?phpif(!isset($_POST["submit"])){exit("错误执行");}//检测是否有submit操作session_start();//登录系统...
<?php
if(!isset($_POST["submit"])){
exit("错误执行");
}//检测是否有submit操作
session_start();//登录系统开启一个session内容
$username=$_REQUEST["username"];//获取html中的用户名(通过post请求)
$password=$_REQUEST["password"];//获取html中的密码(通过post请求)
$con=mysql_connect("localhost","root","root");//连接mysql 数据库,账户名root ,密码root
if (!$con) {
die('数据库连接失败'.$mysql_error());
}
mysql_select_db("MYform",$con);//use user_info数据库;
<form action="logincheck.php" method="post" onsubmit="return enter()">
<td width="138" height="35" align="left" valign="middle"><input type="submit" name="submit" value="登录" onclick="location.href='content.php'" /></td>
</form>
提交的话就一直是错误执行,不要if语句就是notice undefined username和password 展开
if(!isset($_POST["submit"])){
exit("错误执行");
}//检测是否有submit操作
session_start();//登录系统开启一个session内容
$username=$_REQUEST["username"];//获取html中的用户名(通过post请求)
$password=$_REQUEST["password"];//获取html中的密码(通过post请求)
$con=mysql_connect("localhost","root","root");//连接mysql 数据库,账户名root ,密码root
if (!$con) {
die('数据库连接失败'.$mysql_error());
}
mysql_select_db("MYform",$con);//use user_info数据库;
<form action="logincheck.php" method="post" onsubmit="return enter()">
<td width="138" height="35" align="left" valign="middle"><input type="submit" name="submit" value="登录" onclick="location.href='content.php'" /></td>
</form>
提交的话就一直是错误执行,不要if语句就是notice undefined username和password 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询