I was trying this news tutorial on devshed.
list.php queries to db and shows the new article by title. story.php displays the whole article.
i pass the variable story.php?id=1
i get an error on the second page saying id is not defined
$query = "SELECT slug, content, contact, timestamp FROM news WHERE id =
'$id'";
if i change $id to 1 it works fine,
any ideas?