| NamePros Regular Join Date: Feb 2006
Posts: 545
NP$: 180.80 ( Donate)
| Hi,
Start off by visualizing the database schema. For starters I would create a guestbook table in your database and create the basic fields:
Guestbook table
id, userid, subject, description
User table
id, userid, username, password
Then begin your PHP script by adding a few dummy articles in the guestbook table, then connect the php to your database to fetch the results using mysql_fetch_array() and then output in a nice row by row table.
Good luck! |