Hi,
I'm creating an admin script that writes a set of data (each row about a particular video game) to a mysql table.
The first page my users see is 'new game(row)', or 'edit current game (row)'.
If they select new, they go to new.php, and can fill in and create a new game listing - easy.
If they click edit, I need a list of all the games in the database, so that you can click on one and be able to edit the columns I specify for that particular game.
In this way, I only have to create the page once, and the data in the form is just different, depending on the game. My problem is, I don't know how to create this linking list... any help or code examples would be met with gratitude.
James