Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将日期添加到数据库时出现小错误。
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\chemmad\register.php on line 17.
但它在我的网络服务器上运行良好,但它不能在本地主机上运行。
mysql_num_rows已弃用,您不应使用它。
mysql_num_rows
在php中计算行数的正确方法是:
$db = new PDO( ... db connection details ...); $q = $db->query('SELECT a, b, c FROM tbl WHERE oele = 2 GROUP BY boele'); $rows = $q->num_rows; print $rows;