47 48 49 50 51 52 53 54 55 56 57
| if ('' == $Password) { $Password = $this->Password; } if (is_null($this->Link_ID)) { $this->Link_ID = mysql_connect($Host, $User, $Password); if (!$this->Link_ID) { $this->halt("connect($Host, $User, \$Password) failed."); } if (!@mysql_select_db($Database, $this->Link_ID)) {
|