Synopsis
Synopsis
Synopsis
Amritsar
Six Weeks Industrial Training Project Report
On
Student Management System
Submitted in the Partial fulfillment of the requirement for the Award of Degree of
Bachelors of technology
in
INFORMATION TECHNOLGY
(2010-2014)
Submitted To
Submited by
Parveen sharma
100340824866
ACKNOWLEDGEMENT
The success and final outcome of this project required a lot of guidance and
assistance. However, it would not have been possible without the kind support and
help of many individuals and organization. I am highly indebted to GLOBAL
INSTITUTE OF MANAGEMENT
AND EMERGING TECHNOLOGY for their
guidance and constant supervision as well as for providing necessary information
regarding the project and also for their support in completing the project. I would
like to express my gratitude towards my teachers and friends for their kind cooperation and encouragement which help me in completion of this project.
I heartily thank Col. ER. SATISH KUMAR for allowing me to make this project. I am
thankful to and fortunate enough to get constant encouragement, support and
guidance from all teaching staff of Department of INFORMATION TECHNOLGY which
helped us in successfully completing our project work. I would like to extend my
sincere thanks to all of them.
My thanks and appreciations also go to my colleague in developing the project and
people who have willingly helped me out with their abilities.
II
Table of Contents
Sr. No.
Topic
Page No.
1.
Introduction
2.
Objectives
3.
Hardware Requirement
4.
Software Requirement
5.
Technology Background
6.
Conclusion
3
4
5-7
8
III
Introduction
The Project entitled "Amritsar Information System" is a web-based application developed in
PHP LANGUAGE using php as front end & MySQL as backend using apache server. This
project is aimed at developing a Web application that depicts complete information about
Amritsar city. Using this web application, tourist can get all information related to Amritsar.
Amritsar city is the home of Harmindar Sahib. It is the holy city. It is the spiritual and cultural of
sikh religion . the city is known for its rich cuisine and culuture , and for the tragic incident of
Jallianwala Bagh Massacre in 1919 under british rule. More than 2 lakh tourists visits Amritsar
everyday. We need an information system about Amritsar so that tourist visiting the holy city gets
complete information about the city. Information includes tourist places, religious places, famous
food joints, well known colleges, hotels & all other information related to Amritsar.
Objectives
The fashionfibre.com Web Application provides a facility to access all information about
Amritsar. This software helps Tourist to find tourist places, religious places, famous food joints,
well known colleges, hotels & all other information related to Amritsar.
IV
Hardware:
Processor
RAM
512 MB
Minimum 20 GB
Software:
Front-End
Back-End
Operating System
IDE
PHP Editor
Programming
languages
Documentation
Microsoft Word
Technology Background
Hypertext Preprocessor is a widely used, general-purpose scripting language that was originally
designed for web development to produce dynamic web pages.
For this purpose, PHP code is embedded into the HTML source document and interpreted by a
web server with a PHP processor module, which generates the web page document.
VI
What is PHP?
PHP stands for : Hypertext Preprocessor
PHP is a server-side scripting language, like ASP
PHP scripts are executed on the server
PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic
ODBC, etc.)
PHP is an open source software
PHP is free to download and use
What is a PHP File?
PHP files can contain text, HTML tags and scripts
PHP files are returned to the browser as plain HTML
PHP files have a file extension of ".php", ".php3", or ".phtml"
What is MySQL?
MySQL is a database server
MySQL is ideal for both small and large applications
MySQL supports standard SQL
MySQL compiles on a number of platforms
MySQL is free to download and use
PHP + MySQL
PHP combined with MySQL are cross-platform (you can develop in Windows and serve on a
Unix platform)
Why PHP?
PHP runs on different platforms (Windows, Linux, Unix, etc.)
PHP is compatible with almost all servers used today (Apache, IIS, etc.)
PHP is FREE to download 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 scripting block always starts with <?php and ends with ?>. A PHP scripting block can be
placed anywhere in the document.
VII
On servers with shorthand support enabled you can start a scripting block with <? and end with ?
>.
For maximum compatibility, we recommend that you use the standard form (<?php) rather than
the shorthand form.
<?php
?>
A PHP file normally contains HTML tags, just like an HTML file, and some PHP scripting code.
VIII