Jump to: navigation, search

Php oop product management table

From w3cyberlearnings

Objective

Create product table to store product record.

product

CREATE TABLE product 
(
	id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
	pname VARCHAR(200) NOT NULL,
	price DOUBLE NOT NULL,
	seller VARCHAR(200) NOT NULL
);

Related Links


  1. Chapter 1: Singleton class
  2. Chapter 2: Table
  3. Chapter 3: Product Class
  4. Chapter 4: Add Product
  5. Chapter 5: Activity Menu
  6. Chapter 6: List All Products
  7. Chapter 7: Product Detail
  8. Chapter 8: Update or Edit Product
  9. Chapter 9: Delete Product
Navigation
Web
SQL
MISC
References