The following code prints a search result in an individual box for each record found. Instead of printing an individual box for each record found, I would like all the records to appear in the same box with the blue background. I am sure this is possible but I do not know how to do it.
Thank you in advance for your thoughts and for putting up with my recent ineptitudes in making requests.

CODE
if (mysql_num_rows($result5) > 0) {
while ($row = mysql_fetch_row($result5)) {
echo "<br />";
$ShowVerseText[$N + 1] = $row[0];
$X = $ShowVerseText[$N + 1];
echo "<table align=\"center\">\n";
echo " <center>\n";
echo " <table border=\"1\" width=\"700\" height=\"25\" cellspacing=\"0\" bgcolor=\"#D8E0F0\">\n";
echo " <tr>\n";
echo " <td width=\"700\"><font face=\"Arial\" size=\"2\"><i>$X</i></font></td>\n";
echo " </tr>\n";
echo " </table>\n";
echo " </center>\n";
echo "</table>";
}
}
}
else {
// print status message
echo "No rows found!";
}
Thank you again.