Steps To Make Online Photo Gallery #3
Photo Gallery CSS Static Effects
CSS effects static photo gallery is a photo gallery are arranged in sequence in a single window with a static order. In this chapter will discuss :
- The process of setting up the database and tables
- Making the simple photo gallery
- Making the zoom effect photo gallery
- Making the rotation effect photo gallery
- Making the balloon photo gallery
- Making the photo gallery zoom and rotation
Create Database Connection
Connection is made so that the database we've created can be connected with photo gallery page. The database connection as well, the execution of database commands can be executed. To create a database connection, open Notepad or Notepad ++ applications, then type the code below.
<?php
$conn = mysql_connect("localhost","root","");
mysql_select_db("gallery")or die("Unable to select database");
?>
$conn = mysql_connect("localhost","root","");
mysql_select_db("gallery")or die("Unable to select database");
?>
Picture creating connection database
COMMENTS