当前位置:Gxlcms > mysql > php-PHP中mysql_num_rows问题

php-PHP中mysql_num_rows问题

时间:2021-07-01 10:21:17 帮助过:24人阅读

mysqlphp数据库

图片说明

 注册alert('请确认信息完整性!'); history.go(-1);";        }        else        {            if($psw == $psw_confirm)            {                mysql_connect("localhost","root","");   //连接数据库                mysql_select_db("用户表");   //选择数据库                mysql_query("set names 'gdk'"); //设定字符集                $sql = "select username from user where username = '$_POST[username]'"; //SQL语句                $result = mysql_query($sql);    //执行SQL语句                $num = mysql_num_rows($result);

图片说明

 登陆alert('请输入用户名或密码!'); history.go(-1);";        }        else        {            mysql_connect("localhost","root","");            mysql_select_db("用户表");            mysql_query("set names 'gbk'");            $sql = "select username,password from user where username = '$_POST[username]' and password = '$_POST[password]'";            $result = mysql_query($sql);            $num = mysql_num_rows($result);

人气教程排行