Giter VIP home page Giter VIP logo

belanjago-seller's Introduction

Belanjago Seller Centre

This is a simple CRUD application with an E-commerce theme.

Created by

Alfarobby27

Getting Started

  1. Make sure your computer has Git and XAMPP installed.

  2. Clone this repository to your computer and enter the Belanjago-Seller folder from the terminal or cmd.

    git clone https://github.com/Alfarobby27/Belanjago-Seller && cd Belanjago-Seller
  3. Move the Belanjago-Seller folder to the xampp directory below.

    C:\xampp\htdocs
  4. Open the XAMPP application that you have downloaded. Click start on Apache and MySQL

  5. Create MySQL Database

    • Open Command prompt

    • Type below then enter. repeat once enter, until you are on the path C

         cd ..
    
    - If you have typed below
    
        ```bash
          cd \xampp\mysql\bin
    
    • Make sure you are already on this cmd path. C:\xampp\mysql\bin\

    • Then type

        mysql -u root
    • Then type below to create a database

        CREATE DATABASE phpdasar;
        use phpdasar;
    • Then create a marketplace table

        CREATE TABLE marketplace(
        id int primary key auto_increment,
        name varchar(50),
        image varchar(225),
        stock int
        );
    • Then create a user table

        CREATE TABLE user(
        id int primary key auto_increment,
        username varchar(50),
        password varchar(225)
        );
  • Make sure the database that is created is written according to the above
  1. If so, open your browser and paste the below into your browser.
    localhost/Belanjago-Seller
  2. Make sure you register first, before logging in

Features

  • Login, Logout and Register Account
  • Display Product List
  • Add Product Data
  • Change Product Data
  • Delete Product Data
  • Search for Product Data

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.