<tr class="tablerow">
<td>Page Id</td>
<td><select name='PageId' class="select">
<option value='0' >select any page</option>
<?php
$sql10 = "SELECT Id,Title FROM abc";
$rs = mysql_query($sql10) or die(mysql_error());
while($row = mysql_fetch_array($rs)){
echo "<option value='".$row["Id"]."'>".$row["Title"]."</option>";
}
mysql_free_result($rs);
?>
this done show all title from table
but when i update form i want that the tile i insert in to db table selected