PHP/MySQL : Creating a guest book
Olivier Roble


Creating a visitors' book is one of the simplest applications to implement with PHP and a database. The goal is to enable your visitors to enter comments via a HTML fill-in form, to store them in a database, and to display them in a new page. You will learn here how to pass data from a form into a database by using a simple query. So it's not really complicated, just follow us!



Contents:

- Creating the Database Table

- Creating the Form

- Checking Input Validity

- Inserting User Data into the Table

- Displaying the comments