wk_sux.php

  1. <?php
  2. include('mysql_table.php');
  3.  
  4. $conn = mysql_connect('localhost', 'root', '');
  5. $result = mysql_query('SELECT \'foo\' AS `foo`, \'bar\' AS `bar`', $conn);
  6.  
  7. $table = new MySQL_Table($result);
  8. $table->class = 'some css classes';
  9. echo $table->render();
  10. ?>
  11.