Skip to content

Latest commit

 

History

History
56 lines (53 loc) · 2.39 KB

README.md

File metadata and controls

56 lines (53 loc) · 2.39 KB

Introduction

  • This is a car rental website project.
  • The purpose of this project is to create a car rental website.
  • The website will have a login page, a car listing page, a car reservation page, and a car return page.
  • The login page will have a username and password input field.
  • The car listing page will have a search bar and a car listing table.
  • The car reservation page will have a car reservation table.

Requirements

  • XAMPP is required to run the project.
  • The project will be hosted on a localhost server.

Installation

  • Install XAMPP.
  • Open XAMPP and click on the Start button.
  • Clone the project to the root of the XAMPP server.
  • Open the project in XAMPP.
  • Import SQL file from database folder to the XAMPP server.
  • Open Browser and navigate to localhost:8080.
  • Hurray! The project is now running.

Database

  • The database is stored in a folder called database.
  • The database is named as carproject.sql.
  • The database is stored in the root of the XAMPP server.
  • The database is imported to the XAMPP server.
  • Database used is MySQL.
  • Database Connection page is named connection.php.

Table

  • The table is named as car.
  • The table has the following columns:
  • car_id: INTEGER PRIMARY KEY AUTO_INCREMENT
  • car_price: INTEGER
  • car_available: BOOLEAN
  • car_image: VARCHAR(255)
  • car_description: VARCHAR(255)

User Story

  • As a user, I want to be able to search for a car.
  • As a user, I want to be able to see the car that is available.
  • As a user, I want to be able to reserve a car.
  • As a user, I want to be able to return a car.
  • As a user, I want to be able to see the car that I have reserved.
  • As a user, I want to provide feedback to the car rental website.
  • As a user, I should be able to make payment for the car rental.

Admin Page

  • The admin page will have a car listing table.
  • It has a button to add a new car.
  • The button will open a new page where the admin can add a new car.
  • The admin can add a new car by filling in the form.
  • The admin can also delete a car by clicking the delete button.
  • Admin can view user reservation by clicking the view button.
  • Admin can view user return by clicking the view button.
  • Admin can accept or reject a reservation by clicking the accept or reject button.
  • Admin can return a car by clicking the return button.
  • Admin can delete a reservation by clicking the delete button.
  • Admin can view feedback by clicking the view button.