我的代码有什么问题?我不断收到此错误:Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in functions.php on line 4error reading database

function gameTableCheck($gn)

{

    $result = mysql_query("SHOW TABLES LIKE '$gn'",$db) or die ('error reading database'); //This is line 4
    if (mysql_num_rows ($result)>0) {
        return true;
    } else {
        return false;
    }
}

if( gameTableCheck($page) === false ) {
        echo "MAO";
        die();
    }

最佳答案

$db不是函数gameTableCheck中的局部变量,您需要在函数顶部添加global $db;语句。

关于php - “警告:mysql_query():提供的参数不是有效的MySQL链接”-为什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2005720/

10-09 22:22