dbh = $dbh; parent::Table_Data($q, $fields, $default_orderby); if ($this->orderby && !preg_match('/order by/',$q)) { $this->data_source .= " order by ".$this->orderby; } } function aquire() { if (!($result = mysql_query($this->data_source, $this->dbh))) { return; } while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $this->add_row($row); } } } ?>