Here is my code... I have commented out part of it, which is the part that is not working. When uncommented, it does not correctly put a link into a table cell. What am I doing wrong?
echo "<table border=1 align=center width=500>";
echo " <tr> ";
echo " <td> ";
echo " Song Name";
echo " </td>";
echo " <td>".$songname. "</td>";
echo " </tr>";
echo " <tr> ";
echo " <td > ";
echo " Group";
echo " </td>";
echo " <td >".$enter_into_db. "</td>";
echo " </tr>";
//echo " <tr> ";
//echo " <td > ";
//echo " Song ID";
//echo " </td>";
//echo " <td>".$songid. "</td>";
//echo " </tr>";
//echo " <tr> ";
//echo " <td> ";
//echo " Add another record <a href="http://localhost/info/makemusic.php">LINK</a>";
//echo " </td>";
//echo " </tr>";
echo "</table>";