Sebelum membuat database harus sudah ada phpMyadmin, baca : Install XAMPP di Linux atau Install XAMPP di Windows , juga baca : Membuat Database di XAMPP
Berikut adalah contoh program simple Shopping Cart Menggunakan PHP :
1. Membuat database. buka phpMyadmin :
Membuat User, Database dan table yang dibuat :
1.1. Buat User
Buka PhpMyAdmin, pilih tab Privileges, klik Add New User, kemudian isikan :
UserName : useshop
Host : localhost
Password : 1234567
Kemudian klik Check All
1.2. Membuat Database
Isikan pada kolom : create new database : shopping lalu klik create
1.3. Buat Table : products
Contoh menggunakan script :
Membuat table
CREATE TABLE IF NOT EXISTS `products` (
`id_product` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`description` varchar(250) NOT NULL,
`price` decimal(6,2) NOT NULL,
PRIMARY KEY (`id_product`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
INSERT INTO `products` (`id_product`, `name`, `description`, `price`) VALUES
(1, 'Product 1', 'Some random description', '15.00'),
(2, 'Product 2', 'Some random description', '20.00'),
(3, 'Product 3', 'Some random description', '50.00'),
(4, 'Product 4', 'Some random description', '55.00'),
(5, 'Product 5', 'Some random description', '54.00'),
(6, 'Product 6', 'Some random description', '34.00');
Lanjutkan ke tahap : Program Simple Shopping Cart Menggunakan PHP - II