0

ローカルホストでPHPスクリプトを使用してデータベースを選択するのに問題があります。

db名のスペルが正しいことを100%確信しており、実際にはphpmyAdminに非常によく表示され、ローカルホストでPHPスクリプトを実行して接続しようとした場合にのみ、次のエラーが表示されます。

Database selection failed Unknown database 'fokrul_justdeals'

私のPHPコードはここにあります:

<?php
    class database{
        public $connection;
        // the user for the database
        public $user = 'root';  
        // the pass for the user
        public $pswd = '';
        // the db from where you want to parse the info  
        public $db = 'fokrul_justdeals';
        // the host where db is located
        public $host = 'localhost';

        function __construct(){
            $this->connect();
        } 

        private function connect(){
            $this->connection = mysql_connect("$host", "$user", "$pswd") or die("Database connection failed ". mysql_error());
            if($this->connection){
                // we select the db that we want to work with
                mysql_select_db($this->db, $this->connection) or die("Database selection failed " . mysql_error());
            }
        }

私は何千ものフォーラムを読んだことがあり、私はこれからのようにすべてをやっています。しかし、ここで何が問題になっているのかわかりませんか?

興味深いことに、PHPスクリプトでdb名を「mysql」に変更すると、すべてのデータベースのうち、システムで生成されたdb「mysql」のみが接続されます。

別のdb名を作成してみました。また、新しいユーザーを作成して、それらに完全な特権を追加してみました。私には何もうまくいきませんでした:(

4

1 に答える 1

2
$this->connection = mysql_connect("$host", "$user", "$pswd") or die("Database connection failed ". mysql_error());

あなたは使用する必要があります

$this->host,$this->user,$this->pswd
于 2013-03-01T21:35:44.653 に答える