この PHP コーディングを使用すると、次のエラーが発生します。
致命的なエラー: 29 行目の /connection.php の空のプロパティにアクセスできません
class connectionClass
{
var $host = '';
var $user = '';
var $password = '';
var $db = '';
var $con
function __construct($flag)
{
if($flag == "local"):
$this->host = "localhost";
$this->user = "root";
elseif($flag == "remote"):
$this->host = "192.168.1.2";
$this->user = "root";
else:
echo "Incorrect connection flag.";
endif;
$this->password = $password;
$this->db = $db;
}
function connect()
{
$con = mysql_connect($this->host, $this->user, $this->password) or die(mysql_error());
mysql_select_db($this->db, $con) or die(mysql_error());
}
}
助言がありますか?前もって感謝します。