Skip to content

timenyin/C.R.U.D-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

3 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ›๏ธ Online Store CRUD System (PHP)

A simple inventory management system for online items with image support - Perfect for learning PHP/MySQL!

CRUD Screenshot
CRUD Interface Preview

๐ŸŒŸ Features

โœ… Full CRUD Operations

  • Create new items with images
  • Read item list in beautiful table
  • Update existing items
  • Delete items with confirmation

๐Ÿ–ผ๏ธ Image Management

  • Upload product images
  • Preview images with hover zoom
  • Replace/remove existing images

๐Ÿ›ก๏ธ Security First

  • SQL injection protection
  • File type validation
  • Safe file uploads

๐Ÿ“ฑ Responsive Design

  • Works on all screen sizes
  • Clean Bootstrap 5 interface

๐Ÿ› ๏ธ Technology Stack

  • Frontend: Bootstrap 5, HTML5, CSS3
  • Backend: PHP
  • Database: MySQL
  • Server: XAMPP

๐Ÿš€ Installation Guide

Prerequisites

  • XAMPP installed (Download)
  • Basic PHP/MySQL knowledge

Step-by-Step Setup

  1. Start Services

    • Open XAMPP Control Panel
    • Start Apache and MySQL
  2. Create Database

    CREATE DATABASE online_store;
    USE online_store;
    
    CREATE TABLE items (
        id INT PRIMARY KEY AUTO_INCREMENT,
        name VARCHAR(255) NOT NULL,
        description TEXT,
        image VARCHAR(255),
        price DECIMAL(10,2) NOT NULL,
        quantity INT NOT NULL,
        created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
    );

About

๐ŸŒŸ crud php application basic

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published