Post on my development thread since none of you are checking.
Decided to take a little break and review my code, possibly even recode it as I not happy. I will take in a few ideas you guys have told me, thanks for all your ideas/support to help me with my PHP. :)
Development will continue in a few days(3 maximum), possibly earlier.
------------------------
Build 2 is going to be good.
MySQLi/MySQL connection system began :P
PHP Code:
public function __construct($dbhostname, $dbusername, $dbpassword, $dbname, $contype) {
if ($contype == "mysqli") {
$this->connection = mysqli_connect($dbhostname, $dbusername, $dbpassword);
$this->database = mysqli_select_db($dbname);
}
else {
$this->connection = mysql_connect($dbhostname, $dbusername, $dbpassword);
$this->database = mysql_select_db($dbname);
}
}