$query1= mysql_query("select PageId FROM page");
$result = mysql_query("SELECT * FROM page");
echo "<td><a href='http://localhost:1234/usman/page_update_insert.php'>
<img src='IMG/create.png'>Add New Record</a> </td>";
echo "<table border='0'>
<tr class='tableheader'>
<th>PageName</th>
<th>MenuName</th>
<th>ParentMenuId</th>
<th>LinkWidth</th>
<th>OtherUrl</th>
<th>Status</th>
<th>CreatedDate</th>
<th>OnMainMenu</th>
<th>FooterMenu</th>
</tr>";
while($row = mysql_fetch_array($result)) {
echo "<tr class='tablerow'>";
echo "<td>" . $row['PageId'] . "</td>";
echo "<td>" . $row['MenuName'] . "</td>";
echo "<td>" . $row['ParentMenuId'] . "</td>";
echo "<td>" . $row['LinkWidth'] . "</td>";
echo "<td>" . $row['OtherUrl'] . "</td>";
want to show title from abc table instead of pageid from page