okay, first of all you can drop the exit() out of the first if statement. when you use the die function, the script dies at that point.
second, you also need to make it $result in the first if statement and not result.
third you need to loop your fetch results. you are only asking for one row of data. try this:
if(isset($result))
{
while($row = msyql_fetch_array($result))
{
echo ("<table border=1>");
echo ("<tr aling=left>\n");
echo ("<td width='300'>");
echo("CloneID: .$row["CloneID"];
echo ("</td>");
echo("</tr>");
echo ("<tr aling=left>\n");
echo ("<td width='300'>");
echo ("5' sequence: " .$row["seq5"]);
echo ("</td>");
echo("</tr>");
echo("<tr align=left>\n");
echo ("<td width='300'>");
echo ("3' sequence: " .$row["seq3"]);
echo ("</td>");
echo("</tr>");
echo("</table>");
}
}
give that a shot and see if it works.