-2

いくつかのチェックを行う「class.admin.php」というクラスを作成しました。データベースを選択しようとするところまで正常に動作するクラスを呼び出すファイルがあります。

実行するmysql_select_db() or dieと、「データベースが選択されていません」というエラーが表示されます。

class.admin.php

class admin {

    ### Function that check for the connect file (if it exists)
    public function checkConnector() {
        if(file_exists(CONN)) { return true; } else { return false; }
    }

    ### Check connection to MYSQL
    public function checkConnection() {
        global $cn; if(mysql_connect()) { return true; } else { return false; }
    }

    ### Check connection to database
    public function checkDB() { 
        global $db; if(mysql_select_db()) { return true; } else { return false; } 
    }

index.php

$admin = new admin();

# Check the connect file exists
if($admin->checkConnector() === true) {

    # Check connection to MYSQL server
    if($admin->checkConnection()  === true) {

        ### Check selection of DB
        if($admin->checkDB() === true) {

            print 'Selection of database is fine.';

        } else {

            print 'Selection of database is not working.';

        }

    } else {

        print '<p>I\'m sorry, could not connect to MYSQL.</p>';

    };

} else {

    print '<p>I\'m sorry the connection file does not exist. Please install accordingly.</p>';

}
4

1 に答える 1

5

SELECTDBその名前を提供する必要があります

mysql_select_db();   // wrong, which database to select?

正しいのは

mysql_select_db("MyDatabaseName"); 

参考:mysql_select_db

于 2013-03-23T16:21:55.587 に答える