
Originally Posted by
Nile
I'd need to see your code but to me it looks like your missing a ')' in a while, for or if statement before your '{'.
no, all my codes are correct
plz check attachements
Note:
if you need to check it in apache you have to save a copy for install.php bcz it is deleted automatically when installation finish.
change database information in (classes/BHL_DB) in :
PHP Code:
public function __construct($BHL_DB_HOST="localhost", $BHL_DB_USER="root", $BHL_DB_PASS="", $BHL_DB_NAME="bhl"){
$this->BHL_DB_HOST = $BHL_HOST;
$this->BHL_DB_USER = $BHL_USER;
$this->BHL_DB_PASS = $BHL_PASS;
$this->BHL_DB_NAME = $BHL_NAME;
$this->DB_CONN($BHL_DB_HOST, $BHL_DB_USER, $BHL_DB_PASS, $BHL_DB_NAME);
$this->setHost($BHL_DB_HOST);
$this->setUser($BHL_DB_USER);
$this->setPass($BHL_DB_PASS);
$this->setDbName($BHL_DB_NAME);
}
Bookmarks