0% found this document useful (0 votes)
44 views30 pages

Bus Reservation

The document provides information about a company called A.S. INFO. TECH. that offers IT services and training. It details the company profile, services offered, goals and technologies training is provided in like Java, PHP, Cloud Computing and more. It also describes an existing bus reservation system and the need for a new system.

Uploaded by

amit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views30 pages

Bus Reservation

The document provides information about a company called A.S. INFO. TECH. that offers IT services and training. It details the company profile, services offered, goals and technologies training is provided in like Java, PHP, Cloud Computing and more. It also describes an existing bus reservation system and the need for a new system.

Uploaded by

amit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 30

CHAPTER–1

COMPANY PROFILE:-

A.S. INFO. TECH. is an information and technology services provider focusing on


providing highly scalable business solutions with innovative approach and advanced
methodologies for all the developed and blooming companies covering all the sectors.
They provide strategic development for the global business community with their wide
array of effective solutions and services customized to a range of key verticals &
horizontals.
Their approach is based on commencing the projects with clear objectives, delivering
significant outcomes to help overcome the needs of all their clients with proficiency.
They work with a dynamic and fervent team of IT professionals driven by par
excellence to deliver the best possible solutions by utilizing state of art technologies.
With a customer centric focus they ensure their clients with satisfied results every time
and therefore they provide full support to their clients even beyond project completion.
They are acknowledged for their quality standards, work process, professional service,
and suppleness by all their clients.

A.S. INFO. TECH. deals with different services provided by our family by keeping in
mind the customer satisfaction the on-time delivery with the effective work done.
 Web Designing
 Internet Marketing
 Website Development
 ERP Implementation and Support
 6 Week/Months Industrial Training
 Domain Registration & Web Hosting
A.S. INFO. TECH. has a worldwide client base and many years of experience in
professional web site designing and programming. Our sites are created with a solid

1
foundation of functionality, beauty, and simplicity. They are designed specifically to
provide your customers with the information they want quickly and easily.
A.S. INFO. TECH. has now emerged on various Software Technologies with an
objective of strategic and practical approach towards training the students and working
professionals. With the guidance and supervision of our experienced Professionals,
students are trained in each and every aspect of technologies. The courses cover
everything necessary- from the basic concept for beginners to advanced techniques.
This training will help:
 Experienced individuals to refine their skills and learn latest concepts in various
technologies.
 Fresher’s to keep them one step ahead from people without any experience and
also to compete with Industry Professionals.
 Our courses cover everything necessary to build strong professional foundations.

Our goal remains to provide practical knowledge with strong fundamentals so what
student’s career is secured.

What A.S. INFO. TECH. Soft is offering to the students?

A.S. INFO. TECH. offers training in the following technologies:

 JAVA
 PHP
 Cloud Computing
 Web Designing
 Graphics Designing
 Oracle
 Automation Testing and many more
 Networking
 ERP Software’s

2
 Computer Hardware & Repairing
 Online Bidding

Why A.S. INFO. TECH. ?


At A.S. INFO. TECH. Soft, we believe in developing long lasting business solution
rather than just developing an application. A.S. INFO. TECH. has a worldwide
client base and many years of experience in professional web site designing and
programming. Our sites are created with a solid foundation of functionality, beauty, and
simplicity. They are designed specifically to provide our customers with the information
they want quickly and easily.
A.S. INFO. TECH. Soft is backed by Industry experts to solve real-time challenges:
 Coerces developed by Industry Experts.
 State of art labs.
 Trainers are available to solve any of student’s queries.
 The batch size is kept in between 15-20 students.
 Real time project based training.
 Emphasis on overall development.
 Interaction with HR & IT experts.
 100% job assistance on completion of training. Depending upon the
performance, the students are hired by the company.

A.S. INFO. TECH. offers an array of courses in IT training for organization and for
individuals who wish to take up career education and skill enhancement courses, with a
high degree of flexibility.

3
CHAPTER–2
BUS RESERVATION SYSTEM:-

Existing System

 The work is done manually.

 Those who are interested in inquiring about the Bus Type, its Tickets Price, available seats, has to
walk office only.

 This creates a huge Relief for the Customer of the Office on weekends to
save their time.

Need For New System

 A new system is helpful to both employees as well as the customers

 New system provides help to the customer as they can inquire about the Bus model, its
Ticket price, available Seats, facility of the bus etc. and they don’t need to walk to the
office

 There is login and password service for employee and Regular customers to use this
system.

 FUNCTIONAL SPECIFICATION
1. This Project basically provides a Bus information and regarding bus information

2. First of all, in our website any user or visitor are view our system and also
search the bus and how many seats are available in our buses.

3. user can also registered its own seats in bus this website . User can post a
comment on different Bus Services.

4. But user can compulsory registered first in the system.

5. Search Bus category wise .


4
2.1THEORETICAL BACKGROUND:-
PHP is server side scripting language. PHP begin as a PERSONAL HOME PAGE scripting tool.
Today PHP is widely used in personal and corporate world as an efficient web development plate
form. In most cases PHP is introduced in corporation because of its speed and absence of license
fees.
1. Operators
2. Control statements
3. Mathematical functions etc....
PHP acronym for (PHP Hpertext preprocessor) is a server side embedded scripting language.
This means it works with an HTML document to confer to it the capacity of generating content
on demand. You can convert your site into a web application, not just a collection of static pages
which may not get updated quite so often, Which may be alright for the PERSONAL websites,
but not for the one that is going to be used with business and educational websites.

What is a PHP File?

 PHP files can contain text, HTML, JavaScript code, and PHP code
 PHP code are executed on the server, and the result is returned to the browser as
plain HTML
 PHP files have a default file extension of ".php"

What Can PHP Do?

 PHP can generate dynamic page content


 PHP can create, open, read, write, and close files on the server
 PHP can collect form data
 PHP can send and receive cookies
 PHP can add, delete, modify data in your database
 PHP can restrict users to access some pages on your website
 PHP can encrypt data

5
With PHP you are not limited to output HTML. You can output images, PDF files, and
even Flash movies. You can also output any text, such as XHTML and XML.

Why PHP?

 PHP runs on different platforms (Windows, Linux, Unix, Mac OS X, etc.)


 PHP is compatible with almost all servers used today (Apache, IIS, etc.)
 PHP has support for a wide range of databases
 PHP is free. Download it from the official PHP resource: www.php.net
 PHP is easy to learn and runs efficiently on the server side

Basic PHP Syntax:

 A PHP script can be placed anywhere in the document.


 A PHP script starts with <?php and ends with ?>:
 <?php
// PHP code goes here
?>
 The default file extension for PHP files is ".php".
 A PHP file normally contains HTML tags, and some PHP scripting code.

PHP Variables:
Variables are "containers" for storing information.

PHP Conditional Statements

Very often when you write code, you want to perform different actions for different
decisions. You can use conditional statements in your code to do this.

In PHP we have the following conditional statements:

 if statement - executes some code only if a specified condition is true

6
 if...else statement - executes some code if a condition is true and another code if
the condition is false
 if...else if....else statement – selects one of several blocks of code to be executed
 switch statement - selects one of many blocks of code to be executed

PHP Switch Statement

Use the switch statement to select one of many blocks of code to be executed.

For Loop

The for loop is used when you know in advance how many times the script should run.

Syntax:
for (init; condition; increment)
{
code to be executed;
}
PHP Functions:
In this chapter we will show you how to create your own functions. To keep the script
from being executed when the page loads, you can put it into a function. A function
will be executed by a call to the function.

You may call a function from anywhere within a page.

Create a PHP Function


A function will be executed by a call to the function.

Syntax:
function functionName()
{
code to be executed;
}
PHP function guidelines:
7
 Give the function a name that reflects what the function does
 The function name can start with a letter or underscore (not a number)

PHP Form Handling:

The most important thing to notice when dealing with HTML forms and PHP is that
any form element in an HTML page will automatically be available to your PHP
scripts.

Example:

The example below contains an HTML form with two input fields and a submit button:

<html>
<body>

<form action="welcome.php" method="post">


Name: <input type="text" name="fname">
Age: <input type="text" name="age">
<input type="submit">
</form>

</body>
</html>
The $_GET Variable

The predefined $_GET variable is used to collect values in a form with method="get"
Information sent from a form with the GET method is visible to everyone (it will
be displayed in the browser's address bar) and has limits on the amount of information
to send.

Example:
<form action="welcome.php" method="get">
Name: <input type="text" name="fname">
Age: <input type="text" name="age">
<input type="submit">
</form>
8
The $_POST Variable

The predefined $_POST variable is used to collect values from a form sent with
method="post". Information sent from a form with the POST method is invisible to
others and has no limits on the amount of information to send.

Note: However, there is an 8 MB max size for the POST method, by default
(can be changed by setting the post_max_size in the php.ini file).

Example:
<form action="welcome.php" method="post">
Name: <input type="text" name="fname">
Age: <input type="text" name="age">
<input type="submit">
</form>

PHP Session

PHP Session Variables

When you are working with an application, you open it, do some changes and then
you close it. This is much like a Session. The computer knows who you are. It
knows when you start the application and when you end. But on the internet
there is one problem: the web server does not know who you are and what you
do because the HTTP address doesn't maintain state. A PHP session solves this
problem by allowing you to store user information on the server for later use
(i.e. username, shopping items, etc). However, session information is temporary and
will be deleted after the user has left the website. If you need a permanent
storage you may want to store the data in a database.

9
Sessions workby creating a unique id (UID) for each visitor and store variables
based on this UID. The UID is either stored in a cookie or is propagated in
the URL.

Starting a PHP Session

Before you can store user information in your PHP session, you must first start up the session.

Note: The session_start() function must appear BEFORE the <html> tag:

<?php session_start(); ?>

<html>
<body>

</body>
</html>

HTML :

Hyper Text Markup Language (HTML) is the predominant markup language for web
pages. HTML elements are the basic building-blocks of webpages. HTML is a language
for describing web pages.

 HTML stands for Hyper Text Markup Language


 HTML is not a programming language, it is a markup language
 A markup language is a set of markup tags
 HTML uses markup tags to describe web pages
 HTML is written in the form of HTML elements consisting of tags, enclosed in
angle brackets (like <html>), within the web page content. HTML tags most
commonly come in pairs like <h1> and </h1>, although some tags, known as
empty elements, are unpaired, for example <img>. The first tag in a pair is the

10
start tag, the second tag is the end tag (they are also called opening tags and
closing tags). In between these tags web designers can add text, tags, comments
and other types of text-based content.
 The purpose of a web browser is to read HTML documents and compose them
into visible or audible web pages. The browser does not display the HTML tags,
but uses the tags to interpret the content of the page.
 HTML elements form the building blocks of all websites. HTML allows images
and objects to be embedded and can be used to create interactive forms. It
provides a means to create structured documents by denoting structural semantics
for text such as headings, paragraphs, lists, links, quotes and other items. It can
embed scripts in languages such as JavaScript which affect the behavior of HTML
webpages.

JAVASCRIPT :

JavaScript is used in millions of Web pages to improve the design, validate forms,
detect browsers, create cookies, and much more. JavaScript is the most popular scripting
language on the internet, and works in all major browsers, such as Internet Explorer,
Firefox and Opera. JavaScript was designed to add interactivity to HTML pages. It is a
scripting language and it is a lightweight programming language. It is usually embedded
directly into HTML pages. Everyone can use JavaScript without purchasing a license.

What can a JavaScript Do?


 JavaScript gives HTML designers a programming tool - HTML authors are
normally not programmers, but JavaScript is a scripting language with a very
simple syntax! Almost anyone can put small "snippets" of code into their HTML
pages
 JavaScript can put dynamic text into an HTML page - A JavaScript statement
like this: document.write("<h1>" + name + "</h1>") can write a variable text into
an HTML page

11
 JavaScript can react to events - A JavaScript can be set to execute when
something happens, like when a page has finished loading or when a user clicks
on an HTML element
 JavaScript can read and write HTML elements - A JavaScript can read and
change the content of an HTML element
 JavaScript can be used to validate data - A JavaScript can be used to validate
form data before it is submitted to a server. This saves the server from extra
processing

12
CHAPTER-3
SYSTEM ANALYSIS:-
Analysis is the detailed study of the various operation performed by the system and their
relationship within and outside the system. While developing project many problems
arises. To solve those problems data is collected from manuals, books, generals etc.
Logical system models and tools are used e.g.: DFD, Interviews, Data Dictionary etc.
The requirements gathering process is intensified and focused specifically on software. to
understand the nature of the program(s) to be built, the software engineer (“analyst”)
must understand the information domain for the software, as well as required function,
behavior, performance, and interfacing. Requirements for both the system and the
software are documented and reviewed with the customer.
Requirement analysis enables the system engineer to specify function and performance,
indicate software’s interface with other system elements, and establish constraints that
software must meet, Requirements allow the software engineer (often called analyst in
this role) to refine the software are allocation and build modules of the data, functional,
and behavioral domains that will be treated by software, Analysis provides the software
designer with models that can be translated in to data, architectural, interface, and
procedural design. Finally, the requirement specification provides the developer and the
customer with the means to assess quality once software is built. Developer and the
customer with the analysis may be divided into five areas of effort:
Problem Recodnition
 Evaluation and Synthesis
 Modeling
 Specification
 Review

13
PROJECT REQUIREMENTS AND SPECIFICATION

Requirements

 HARDWARE REQUIREMENTS
RAM

Minimum: 512 megabytes (MB)

Recommended: 2 GB

Hard Disk

40 GB of available space required on installation drive

500 GB of available space required on system drive

Display

Recommended: 1024 x 768 High Color - 16-bit

 SOFTWARE SPECIFICATON

 FRONT-END : PHP
 BACK-END : MySql SERVER

CLIENT AND SERVER SIDE REQIREMENTS

CLIENT SIDE:
1.Internet Browser
2.System
3.Internet Connection

14
SERVER SIDE:
1.MySql Database
2.Apache Linux server
3.Web hosting
4.Domain

SPECIFICATION

Operational Feasibility:-

The project is operationally feasible. This project is made for the convenience
of the employees. It will greatly reduce the huge burden of employees. So
because of the above stated advantages the user of the system will not be
reluctant.
So my project “Enterprise Resource Planning” performs all the operations,
Such as adding a new employee updating the existing one, to display the
employees, projects and to search particular employee, project. All these
operations are performed by the project. So it has operational feasibility.

BENEFITS

 More amount of accuracy

 Paper work is reduced

15
CHAPTER-4

SYSTEM DESIGN:-
System design is a solution, a ”how to” approach to the creation of a new system. The
important phase is composed of several steps. It provides the understanding and
procedural details necessary-for implementing the system recommended in the feasibility
study. Emphasis is on translating the performance requirements into design specifications.
Design goes through logical and physical stages of developments. Logical design reviews
the present physical system; prepares input and output specification; makes edit, security,
and control specifications; details the implementation plan; and prepares a logical
walkthrough. The physical design maps out the details of the physical system, plans the
system implementation, devises a test and implementation plan, and specifies any new
hardware and software.
System design is a transition from a user oriented document oriented to programmers or
database personnel. It goes through logical and physical design with emphasis on the
following:-
a) Preparing input/output specification
b) Preparing security and control specifications
c) Specifying the implementation plan
d) Preparing a logical design walkthrough before implementation

4.1 INPUT DESIGN:-

In accurate input data is the most common case of errors in data processing. Errors entered by
data entry operators can be controlled by input design. Input design is a process of converting
user-originated inputs to a computer based format. After input data are identified, appropriate
input media are selected for processing and the analyst must decide how input is entered and the
speed of data capture. The fastest method is online data entry, which requires a CRT screen for
display and predefined user’s options that standardize data capture and provide visual verification.
The entire input screen is shown with data in input design section.

16
4.2 OUTPUT DESIGN:-

Computer output is the most important and direct source of information to the user efficient,
intelligible output design should improve the system’s relationships with the user help in decision
making. A major form of output requirements of the user. The output devices to consider depend
on the factors such as compatibility of the device with the system, response time requirements,
excepted print quality, and number of copies needed.

4.3 DATABASE DESIGN:-

After the input and output are designed, files and data they store must be organized according to
user requirements and the constraints of the hardware and operating system. A decade ago,
database, was unique to large corporation with mainframes. Today it is recognized as a
standard of MIS and is available for virtually every size of computer. In a database environment
common data are available and used by several users. The general theme behind a database is to
handle information as an integrated whole. In database design, several specific objectives are
considered.

17
CHAPTER-5

SYSTEM IMPLEMENTATION:-

System implementation is the stage when the user has thoroughly tested the system and
approves all the features provided by the system. The various tests are performed and
the system is approved only after all the requirements are met and the user is satisfied.
Implementation is the process of having systems personnel check out and put new
equipment into use, train users, install the new application and construct any files of
data needed to use it. This phase is less creative than system design. Depending on the
size of the organization that will be involved in using the application and the risk
involved in its use, systems developers may choose to test the operation in only one
area of the firm with only one or two persons. Sometimes, they will run both old and
new system in parallel way to com-pare the results. In still other situations, system
developers stop using the old system one day and start using the new one the next.
The implementation of the web based or LAN based networked project has some extra
steps at the time of implementation. We need to configure the system according the
requirement of the software.
For the project we need to install and configure Tomcat server 5.5, database server, and
the deployment directory for the project.

5.1 CODING:-

Introduction of Coding

This means program construction with procedural specification has finished and the
coding for the program begins. Once the design was over, coding commenced. Coding is
natural consequence of design. Coding step translate a detailed design representation of
software into a programming language realization. Main emphasis while coding was on
style so that the end result was an optimal code.

Coding Style
18
The structured programming method was used in all the modules of the project. It
incorporated the features. The code has been written so that the definition and
implementation of each function is contained in one file. A group of related function
was clubbed together in one file to include it when needed and save us from the labor
of writing it again and again.

Naming Convention

As the project size grows, so does the complexity of recognizing the purpose of the
variables. Thus the variables were given meaningful names, which would help in
understanding the contents and purpose of variable. The function names are also given
meaningful name that can be easily understood by the user.

Indentation

Use of indentation can make the task of reading and understanding a program much
simpler. Indentation is an essential part of good program. If code id intended without
thought it will seriously affect the readability of the program. The higher level
statements like the definition of variables, constants and the functions are intended with
each nested block intended, starting their purpose in the code.

Use Of Ajax and JavaScript

We have tried to use the combination of XML and JavaScript i.e AJAX with which we
can make our website more dynamic and use of less code.

Use of HTML

HyperText Markup Language (HTML) is the predominant markup language for web
pages. HTML elements are the basic building-blocks of webpages. HTML is a language
for describing web pages.

 HTML stands for Hyper Text Markup Language

19
 HTML is not a programming language, it is a markup language
 A markup language is a set of markup tags
 HTML uses markup tags to describe web pages.

Use of PHP

 PHP stands for PHP: Hypertext Preprocessor


 PHP is a widely-used, open source scripting language
 PHP scripts are executed on the server
 PHP is free to download and use

Front Page:-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>home</title>
</head>
<style type="text/css">
a{ text-decoration:none;
color:#000;

}
a:hover{color:#000;}
</style>

<body>
<div class="container" style="background-color:#FFFFB3;">

<div class="row">
<div class="col-sm-3" style="height:210px;"><center><img src="image/Logo_AS Computers.png" height="200px"
width="200px" /></center></div>
20
<div class="col-sm-9" style="height:210px; font-size:75px; font-family:'Palatino Linotype', 'Book Antiqua', Palatino,
serif;">
<p style="text-shadow:#900 0px 3px 4px, #900 0px 5px 6px;">AS Bus Reservation</p>
</div>
</div>

<div class="row">
<div class="col-sm-12" style="height:75px; background-color:#900;font:'Palatino Linotype', 'Book Antiqua',
Palatino, serif; font-size:36px; color:#00F; ">
<table width="100%">
<tr>
<td width="20px"><a href="index.php">Home</a></td>
<td width="20px"><a href="about.php">AboutUs</a></td>
<td width="20px"><a href="login.php">Login</a></td>
<td width="20px"><a href="booking.php">Booking</a></td>
<td width="20px"><a href="contactus.php">Contact Us</a></td>
</tr></table>
</div></div>

<div class="row">
<div class="col-sm-12" style="height:450px; ">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>WOWSlider generated by WOWSlider.com</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="WOW Slider, jQuery Carousel Tutorial, jQuery Carousel Text" />
<meta name="description" content="WOWSlider created with WOW Slider, a free wizard program that
helps you easily generate beautiful web slideshow" />
<!-- Start WOWSlider.com HEAD section -->

21
<link rel="stylesheet" type="text/css" href="engine1/style.css" media="screen" />
<style type="text/css">a#vlb{display:none}</style>
<script type="text/javascript" src="engine1/jquery.js"></script>
<!-- End WOWSlider.com HEAD section -->
</head>
<body style="background-color:#ffffff">
<!-- Start WOWSlider.com BODY section -->
<div id="wowslider-container1">
<div class="ws_images">
<a href="#"><img src="data1/images/slide1.jpg" id="wows0"/></a>
<a href="#"><img src="data1/images/traveler.jpg" id="wows1"/></a>
<a href="#"><img src="data1/images/ac.jpg" id="wows2"/></a>
<a href="#"><img src="data1/images/imghome__copy__copy.jpg" id="wows3"/></a>
<a href="#"><img src="data1/images/large__copy__copy.jpg" id="wows4"/></a>
</div>
<div class="ws_bullets"><div>
<a href="#wows0" title="slide1"><img src="data1/tooltips/slide1.jpg" alt="slide1"/>1</a>
<a href="#wows1" title="traveler"><img src="data1/tooltips/traveler.jpg" alt="traveler"/>2</a>
<a href="#wows2" title="ac"><img src="data1/tooltips/ac.jpg" alt="ac"/>3</a>
<a href="#wows3" title="imgHome - Copy - Copy"><img src="data1/tooltips/imghome__copy__copy.jpg"
alt="imgHome - Copy - Copy"/>4</a>
<a href="#wows4" title="large - Copy - Copy"><img src="data1/tooltips/large__copy__copy.jpg" alt="large - Copy -
Copy"/>5</a>
</div></div>
<a style="display:none" href="http://wowslider.com">Carousel jQuery Tutorial by WOWSlider.com v1.7</a>
<div class="ws_shadow"></div>
</div>
<script type="text/javascript" src="engine1/script.js"></script>
<!-- End WOWSlider.com BODY section -->
</body>
</html>

</div>
</div>

22
<div class="row">
<div class="col-sm-3" style="height:615px; background-color:#900; border:#000 groove; border-
radius:20px;"><font color="#FFFFFF">
<center><h1>News</h1></center></font>
<marquee direction="up" behavior="scroll">
<img src="image/ac.jpg" height="200" width="250"/><br />
<h1 style="color:#FFF;">AC Coach @ 850Rs On 80Kms.</h1><br />
<img src="image/en.visitbergen.com - Copy - Copy.jpg" height="200" width="250"/><br />
<h1 style="color:#FFF;">Mercedes Coach @ 750Rs On 80Kms.</h1><br />
<img src="image/traveler.jpg" height="200" width="250"/><br />
<h1 style="color:#FFF;">Traveler Coach @ 650Rs On 80Kms.</h1><br />
<img src="image/non ac.jpg" height="200" width="250"/><br />
<h1 style="color:#FFF;">Non-Ac Coach @ 550Rs On 80Kms.</h1><br />
<img src="image/roadways.gif" height="200" width="250"/>
<h1 style="color:#FFF;">Haryana Roadways @ 150Rs On 80Kms.</h1><br />
</marquee><br /><br /><br />
<h1 style="color:#FFF;">For Best Offers Call us On<br /><br />
<font size="+3">+91-8529917290<br />+91-9034012482</h1></font>

</div>

<div class="col-sm-6" style="height:615px; background-color:#FFFFA4;">


<font face="Palatino Linotype, Book Antiqua, Palatino, serif" size="15" color="#000000">HOME</font>
<p align="justify"><font color="#000033" size="3">Bus Reservation System is designed to automate the online
ticket purchasing through an easy-to-use online bus booking system. Embed our online bus ticketing system into
your website and enable your customers to book tickets for various routes and destinations. With the bus ticket
reservation system, you can manage reservations, client data, and passenger lists. You can also schedule routes,
set seat availability, upload an interactive seat map and let customers select their seats.

</font>

23
<h4><font face="Palatino Linotype, Book Antiqua, Palatino, serif" color="#000000">Why A.S. Bus Reservation
System for Bus Booking?</h4></font>

<p align="justify"><font size="2" face="Palatino Linotype, Book Antiqua, Palatino, serif" color="#000000">The
leading player in online Bus bookings in India, A.S. Bus Reservation System offers lowest fares, exclusive discounts
and a seamless online booking experience. Desktop or mobile site is a delightfully customer friendly experience,
and with just a few clicks you can complete your booking.
Booking Bus Ticket with A.S. Bus Reservation System
<br />
With more than 12,000 bus routes spread across India and integration with over 1300 bus operators, A.S. Bus
Reservation System's online bus reservation system is simpler and smarter. It provides you a wide range of
facilities, right from choosing your pickup point to your preferred choice of seat (for instance, luxury buses with
sleeper berths). You can also choose from the widest range of available buses like Mercedes, Volvo, Volvo AC, AC
luxury, Deluxe, Sleeper, Express and other private buses. The payment options are easier too- you can use either
debit/credit card facility or net-banking. Not just that, in case of any change in your travel plan, bus tickets can be
cancelled online. So, next time you need not stand in long queues or search at different bus ticket counters. You
can directly book bus tickets online with A.S. Bus Reservation System.com and stay assured.</font>
</p>

</p></font>
</div>

<div class="col-sm-3" style="height:615px; background-color:#900; border:#000 groove; border-


radius:20px;"><center><font color="#FFF"><h1>Day-Night Service</h1></center></font>
<center>
<img src="image/ac.jpg" height="100" width="150"/>
<img src="image/en.visitbergen.com - Copy - Copy.jpg"s height="100" width="150"/>
<img src="image/traveler.jpg" height="100" width="150"/>
<img src="image/non ac.jpg" height="100" width="150"/>
<img src="image/roadways.gif" height="100" width="150"/>
</center>
</div></div>

24
<div class="row">
<div class="col-sm-4" style="height:250px; background-color:#900; border:#000 groove; border-radius:20px;"><h3
style="color:#FFF;">Bus Tickets Online</h3>
<p align="justify" style="color:#FFF;">
A.S. Bus Reservation System is India's leading player for Bus bookings. With the cheapest fare guarantee,
experience great value at the lowest price. Instant notifications ensure current bus schedule, instant fare drops,
amazing discounts, instant refunds and rebook options, price, Operator reviews and many more interesting
features.</p>
</div>

<div class="col-sm-4" style="height:250px; background-color:#900; border:#000 groove; border-radius:20px;"><h3


style="color:#FFF;">Who We Are</h3>
<p align="justify" style="color:#FFF;">
We are Certified By Govt. of India as Well As By Govt. of Haryana.
Our Company Authorization by ISO 9001:2008.
Our Company Authorization by UK Cert(Board of United Kingdom)
Our Company Authorization by UKAF (UK Accreditation Forum Limited)
ISO 9001:2015 Quality Management System Certification
24*7 Technical support
</p>
</div>

<div class="col-sm-4" style="height:250px; background-color:#900; border:#000 groove; border-radius:20px;">


<a href="register.php"><input type="button" value="Register Yourself" onclick="" style="height:100px;
width:200px; background-image:url(image/bg.jpg); border:groove 2px; border-radius:60px; box-shadow:#CF0 0px
0px 4px 8px; margin-top:65px; margin-left:55px;" /></a>
</div>
</div>

</div>
</body>
</html>

25
CHAPTER-6
SNAPSHOTS:-

Online Booking:-

26
27
CHAPTER-7
CONCLUSION

 We think that not a single project is ever considered as complete


forever.Because our mind is always thinking something new and
our necessities also are growing day by day.We always want
something more than what we have.Our application also ,

 If you see at the first glance then you find it to be complete but we
want to make it still mature and fully automatically.

 The future perspective of our project can linking our booking


system with other centralized bus services so that user has an
ease of booking and travelling. Other then this for long route
journeys food facility and its variety can be added.

 With the use of GPS every traveler can get advance map of
route to be followed during journey.

 Making a mobile app for the user is also a first step development.

What value I have added to my knowledge

1 Domain Experience:

The individual responsibilities are more. So, I have learnt a lot.

28
2 Exposure to entirely different technology
Working on PHP for the first time was a very enriching experience. I had never worked
on this platform earlier. So it added to my list of know how and the computer
languages known to me.

3 Database Implementation

I had earlier made database but worked on My SQL for the first time. I learnt many
new things about database creation, concept of stored procedure etc. We learn many
things theoretically as part of our curriculum but here I got a chance to apply my
knowledge practically and enhance it also at the same time.

29
CHAPTER-8
BIBLIOGRAPHY:-
8.1 BOOKS

1.Database management system by Vipin C. Desai

2.System Analysis and Design by Elias M. Awad

3.PHP by Complete Reference and www.w3schools.com

4.JavaScript by Ivan Byross

5.MySql server from MySQL 5.5 Reference Manual

8.2 WEB REFERENCES

1. http://www.w3schools.com

2. http://www.wikipedia.com

3. http://www.javascript-coder.com/html-form/javascript-form-validation.phtml

4. http://leandrovieira.com

5. http://nivo.dev7studios.com
6. http://php.net
7. http://www.2createawebsite.com/build/templates.htmlwww.webopedia.com

30

You might also like