CAR HIRING MANAGEMENT SYSTEM (CHMS)

📄 Item Type: Project Material| 📋 65 pages| 📚 1–5 chapters| Amount: ₦5,000

CAR HIRING MANAGEMENT SYSTEM (CHMS)

📄 Project Material 📋 65 pages 📚 Chapters 1–5 💾 MS-Word & PDF

Chapters 1–5  |  ₦5,000

Download Complete Project Now

CHAPTER ONE

INTRODUCTION

  • Introduction

A car rental, hire car, or car hire agency is a company that rents automobiles for short periods of time, generally ranging from a few hours to a few weeks. It is often organized with numerous local branches (which allow a user to return a vehicle to a different location), and primarily located near airports or busy city areas and often complemented by a website allowing online reservations. Car rental agencies primarily serve people who require a temporary vehicle, for example those who do not own their own car, travelers who are out of town, or owners of damaged or destroyed vehicles who are awaiting repair or insurance compensation. Car rental agencies may also serve the self-moving industry needs, by renting vans or trucks, and in certain markets other types of vehicles such as motorcycles or scooters may also be offered. Alongside the basic rental of a vehicle, car rental agencies typically also offer extra products such as insurance, global positioning system (GPS) navigation systems, entertainment systems, mobile phones, portable WiFi and child safety seats. The starting point of Car renting is really unknown as said by Thomas Pretty; he also mentioned that many beliefs that Joe Saunders was the first man to start a Car renting company. According to Thomas Pretty, charges were calculated with the help of mileage tracking device. Many people became interested in the Car rental business and hence got involved. Car renting became more popular as years pass by. Today Car renting services is found all over the world, especially in the developed and developing countries. To make this service more popular and accessible to the public it has been transform into a web base system and connected to the internet were everyone can be able to have access to it [1].

  • Theoretical Background

To implement the car hiring management system, the technologies adopted for the development of the system and are Hyper Text Markup Language (HTML), Java script, pHp (Hypertext preprocessor) and MySql database. These technologies were chosen because they are well suited for web-based applications.

HTML is the acronym for hypertext markup language. It is the basic language used to develop web content. It uses tags to represent commands. Every tag have a specific function.

Java script is a scripting language that helps in making web pages dynamic. It is also used for front end processing of captured data from web forms.

pHp is a recursive acronym and it means PHP hypertext pre-processor:. It is used to link the data in web-page forms to the MySql database.

Mysql is a server side database technology for web-based or network-based applications.

The source code below is used to add new car and update car status to database.

<?php

require_once(‘connect.inc.php’);

?>

<?php

if (isset($_POST[‘submit_btn’])){

$cost= $_POST[‘cost’];

$status = $_POST[‘status’];

$file_name=$_FILES[‘file’][‘name’];

$tmp_name = $_FILES[‘file’][‘tmp_name’];

$ran1=rand(100,400);

$ran2=rand(1000,100);

$car_id = ‘CAR’.$ran1.$ran2;

if(!empty($cost) && !empty($status) && !empty($file_name)){

$location = ‘upload/’; //creating a location or folder where my passport will be stored

if (file_exists($location.$file_name)) {

echo ‘car name already exist, please rename the car name’;

}else{

(move_uploaded_file($tmp_name, $location.$file_name));

$car_full_path = $location.$file_name;

$query=”INSERT INTO `car_reg_tbl` VALUES (”,’$car_id’,’$cost’,’$status’,’$car_full_path’)”;

if($query_run=mysql_query($query)){

echo ‘New car saved sucessfully’;

}else{

echo mysql_error();

}

}

}else{

echo ‘All fields are required’;

}

}elseif (isset($_POST[‘update_btn’])){

$car_id_updatet= $_POST[‘car_id_update’];

$status_update = $_POST[‘status_update’];

if(!empty($car_id_updatet) && !empty($status_update)){

$query= “SELECT `car_id` FROM `car_reg_tbl` WHERE `car_id`='”.mysql_real_escape_string($car_id_updatet).”‘”;

$query_run =mysql_query($query);

$query_num_rows = mysql_num_rows($query_run);

if($query_num_rows==0){

echo ‘Invalid Car Id’;

}else if ($query_num_rows==1) {

$query=”UPDATE `car_reg_tbl` SET status=’$status_update’ WHERE `car_id`=’$car_id_updatet'”;

if($query_run=mysql_query($query)){

echo ‘Status updated successfully’;

}else{

echo mysql_error();

}

}

}else{

echo ‘Please provide a car id and a stutus which you want to update’;

}

}

?>

ADD NEW CAR

Cost per day:

Status:

Available

Not Available



Car Image:

UPDATE CAR STATUS

Car Id:

Status:

Available

Not Available



1.2 Statement of the Problem

The problem with some of the current system is that:

Based on observations, some small companies already have a car hiring system which is not a web based application. This is a limitation that gives them capability to store customer’s details, but at the same time they cannot make their services more available to the public through the internet, they rather make use of posters to advertise their services to the public. These types of companies can overcome these problems by switching to the web base application of their type of system.

They also make use of phone call reservations which is also limited to many features as compare to a web base system. For example a customer may make a phone call reservation for a particular car, but when he/she comes to pick the car, he/she might turn not to like the car; this could be because the customer could not see a sample picture of the car he/she wants to rent.

1.3. Aim and Objective of the Study

The main objective of this research work is to provide convenience to the management team by developing a computerized system to make processes regarding car rental easier.

The main objectives of this project are as follows:

  • To enhance searching speed for all information such as client and rental.
  • To develop a system that will help manage the business transactions of car hiring.
  • To help in advertising the car hiring services of a company, through the availability of the system.
  • To provide direct access to clients through computerized application system.
  • To provide report generation and analyses the rental of car to give better decision making.

This Project is for You If:

  • You are writing your final year project for the first time and don't want to make costly mistakes
  • This is your exact topic, or very close to what your supervisor gave you
  • Your supervisor has rejected one or more chapters and you don't know what to fix
  • You are stuck on Chapter 3 or data analysis and nothing is making sense
  • Your deadline is close and you are still far behind
  • You can't find enough materials anywhere for your topic
  • My project supervisor is very strict and I don't want to have any problem with my project work — I need a well structured and referenced project
  • I saw my school project requirement and I am confused on where or what to do
  • Everyone in my class has submitted their project and I haven't even started yet
  • My supervisor rejected my research methodology and I don't know what to do
  • I thought my topic was simple and easy but on Chapter 2 I cannot find any material and my work is due for submission
  • I have the content somehow but my references and bibliography are all over the place and I don't know how to arrange them properly
  • I am combining school with work and I genuinely do not have the time to write everything from scratch — I just need something to work with
  • My supervisor changed the topic I wanted and approved another one — I am confused on where to start from
  • I am scared of submitting something that will be flagged for plagiarism — I need something original that I can use as a proper guide
  • I have been browsing the internet for days looking for materials on this topic and I cannot find anything useful anywhere
  • This is not my first time doing this project — I have carried it over before and I cannot afford to do it again
  • I have written some chapters already but I am stuck midway and need to see how others handled the same topic
Yes, This Is My Situation — Send Me the Complete Material

Here's everything you get with the complete project package:

Chapters 1–5 (Word & PDF)
Abstract & Table of Contents
References, Citation & Bibliography
Fully Editable Microsoft Word Format
Original, Plagiarism-Free Content
Instant Email Delivery
Complete package ₦10,000₦5,000
Price may return to ₦10,000 at any time.

See Our Conversations With Students on WhatsApp

Students sharing their experience after using our service

I've Seen Enough — Get Me This Project Material

What Other Students Are Saying

↩ View More Reviews

Can't find what you're looking for?

Search thousands of project topics across every department.

Frequently Asked Questions

Yes. All project materials on iProject are original, well-researched, and crafted to be plagiarism-free. They are intended as academic guides and reference materials.
You will receive the complete project in both Microsoft Word (.docx) and PDF formats, making it easy to edit and submit.
Delivery is instant. Once payment is confirmed, the material is sent directly to your email address. You can also download it immediately from the checkout page.
Absolutely. The Word format is fully editable, allowing you to modify the content, swap out case studies, and adapt the material to your specific research context.
All My Questions Are Answered — Download the Complete Project