<?php
require ('db.php');
echo 'Welcome to the spinoff reviews database. You can submit a user review here.<br />';
$query = mysql_query("SELECT * FROM spinoff");
while ($row = mysql_fetch_assoc($query)) {
echo $row["id"] .". ". $row["name"]."<br />";
echo "Owners: ".$row["owner"];
}
?>
Try that out, I think that covers what you want, I hope there are no mistakes in there h ehe,
Brad