<?php$con = mysql_connect("localhost","root","");if (!$con) { die('Could not connect: ' . mysql_error()); }mysql_select_db("eforum", $con);$result = mysql_query("SELECT * FROM submitissue");echo "<table border='1'><tr><th>Issue Creator</th><th>Issue Owner</th><th>Issue Description</th></tr>";while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['icr'] . "</td>"; echo "<td>" . $row['io'] . "</td>"; echo "<td>" . $row['id'] . "</td>"; echo "</tr>"; }echo "</table>";mysql_close($con);?>