<table border=1> <?php mysql_connect('localhost', '', ''); $res = mysql_query('SHOW VARIABLES'); while($row = mysql_fetch_row($res)) echo '<tr><td>'.$row[0].'</td><td>'.$row[1].'</td></tr>'; ?> </table>