hi, I am trying to run this script but I am getting this error:
Parse error: parse error, unexpected T_OBJECT_OPERATOR, expecting ')' in /home/www/db.php on line 14
That happens when I am running this code:
<?php
class db //Class beginning.
{
var $DB_HOST="localhost";
var $DB_USER="root";
var $DB_PASSWORD="";
var $DB="";
var $DB_TABLE="";
var $DB_LINK="";
var $DB_SELECT="user_menagement";
//Methods
function dbConnect($this->DB_LINK) {
if (!($this->DB_LINK = mysql_pconnect($this->DB_HOST, $this->DB_USER, $this->DB_PASSWORD))) {
DIE ("The Connection could not be establish.");
} else {
$this->DB = mysql_select_db($this->DB_SELECT, $this->DB_LINK) OR DIE ("Cannot select the DB");
}
}
} //Class end.
?>