PHP Code:
<?php
echo "<table>";
echo "<tr>";
echo "<th>Band</th><th>Song</th><th>etc...</th><th>Request</th>";
$sql = "SELECT * FROM Songs";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result){
echo "<tr>";
echo "<td>" . $row['bandName'] . "</td>";
echo "<td>" . $row['songName'] . "</td>";
echo "<td>etc</td>";
echo "<td><a href=\"request.php?songID=" . $row['songID'] . "\">Request</a>";
}
?>
Not bad...creates a table using sql injections..
Need to create a table..simple enough to do..
Make sure you have an insert table..to insert songs into your table..
SQL tables are easy to make
W3Schools
Live it, Learn It, Code it