i found the Warning:Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/u656351845/public_html/just/activation.php on line 11 Your account could not be activated!
我的桌子还可以。
当我运行代码时,数据库表值在id下从0升级到1。
但我无法解决警告。
代码在这里:<?php
include_once "DB_connect.php";
$id = $_REQUEST['id'];
$id = preg_replace("[^0-9]", "", $id);
和$sql = mysql_query("UPDATE loged_in_user SET emailactivated='1' WHERE id='$id'");
$sql_doublecheck=mysql_query("SELECT*FORM loged_in_user WHERE id='$id' AND emailactivated='1' LIMIT 1");
$doublecheck = mysql_num_rows($sql_doublecheck);
答案 0 :(得分:1)
这里警告消息是明确的:mysql_num_rows()期望参数1是资源,给定布尔值
请参阅PHP帮助以获取函数“mysql_query”,如果失败则返回FALSE(布尔值)。
似乎失败了,因为你的语法不正确:第二个查询中的SELECT * FORM
你需要它是SELECT * FROM with spaces ...