<?phpinclude('mysql_table.php'); $conn = mysql_connect('localhost', 'root', '');$result = mysql_query('SELECT \'foo\' AS `foo`, \'bar\' AS `bar`', $conn); $table = new MySQL_Table($result);$table->class = 'some css classes';echo $table->render();?>