Original code:
echo "<TR>\n"
."<TD bgcolor=".row_color($i).">".$row["Track_Number"]."</TD>\n"
."<TD bgcolor=".row_color($i).">".$row["Title"]."</TD>\n"
."<TD bgcolor=".row_color($i).">".print "<a href='http://localhost".$row["Path"]."</TD>\n"
."</TR>";
}
echo "</TABLE>"
Your problem is that u have a single ( ' ) in your code, should be mor like this. this code is longer but easy to debug.
Original code:
echo "<TR>\n"
."<TD bgcolor=".row_color($i).">".$row["Track_Number"]."</TD>\n"
."<TD bgcolor=".row_color($i).">".$row["Title"]."</TD>\n"
."<TD bgcolor=".row_color($i).">"; ?>
<a href="http://localhost/<?php echo .$row["Path"]; ?></TD>
</TR>
echo "</TABLE>"
What u did bf the <a href> tag was fine, what went wrong was that there was a ( ' ) between the a href='http://localhost
I hoped I helped