if(! mysql_select_db($this->database)) {
$this->errors[] = "Error selecting database\n"
."========================\n"
.mysql_errno().":".mysql_error();
die($this->displayError($this->errors));
}
This is testing for errors, and it WILL select the database right? Its not just going to test to see if its okay, but it'll also actually select the db?