Online gallery database
In previous post, message sent by visitor does not get stored in database. To use database we need PHP to get the data, connect to database and save the data there in database. Database that we are going to use is MySQL. Easiest and quickest way too use PHP and MySQL is to install XAMPP. After install your XAMPP copy the gallery folder, into server htdoc folder. Now type localhost/gallery/home.html URL in your browser. The browser should be able to open the gallery home page. Make sure you have started Apache and MySQL from XAMPP control panel. Before saving the message from visitor into database, we have to create a database first. To do that, go to phpMyAdmin page and create a database called gallery. After the database is created, create a table called messageTable . Below is the entity diagram that represent the table. Next, create a PHP file in the gallery folder. Open notepad and type the following code. Save the file a...