0% found this document useful (0 votes)
6 views

Mid Report

The document provides an overview of PHP, JavaScript, HTML, CSS, and MySQL, highlighting their features, advantages, and disadvantages. It details the development of a web-based application for managing university records, focusing on user and administrative modules. The project aims to streamline processes such as student registration and data management, utilizing technologies like PHP, JavaScript, and MySQL.

Uploaded by

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

Mid Report

The document provides an overview of PHP, JavaScript, HTML, CSS, and MySQL, highlighting their features, advantages, and disadvantages. It details the development of a web-based application for managing university records, focusing on user and administrative modules. The project aims to streamline processes such as student registration and data management, utilizing technologies like PHP, JavaScript, and MySQL.

Uploaded by

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

1.

INTRODUCTION
OF PHP

Brief Introduction about PHP

PHP is server side scripting language. PHP begin as a


PERSONAL HOME PAGE scripting tool. 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.

Features of practical PHP application.

 An object oriented code base


 External HTML interface using template
 External configuration.
 Customizable message.
 Relational Data storage.
 Built in access control.
 Portable directory structure.

Disadvantages of PHP:-
1 Security

2 Weak type

Advantages of PHP:-
• Open source: It is developed and maintained by a
large group of PHP developers, this will helps in
creating a support community, abundant extension
library.

• Speed: It is relative fast since it uses much system


resource.
• Easy to use: It uses C like syntax, so for those
who are familiar with C, it’s very easy for them to
pick up and it is very easy to create website
scripts.

• Stable: Since it is maintained by many developers,


so when bugs are found, it can be quickly fixed.

Characteristics of PHP:-
• Readable – Being able to easily read code is vital.
Don’t ever assume you will be the only developer to
ever read and maintain your code. I can’t think of a
single project for the exception of my blog that I
have been the only one who worked on it. Readable
code has meaningful variables, good comments that
help describe what’s going on. However, good
variables and comments doesn’t necessarily mean
your code is readable.

• Organized – While some people think this is the


same as readable, organization is different and
crucial to me. Readability is the ability to read your
code, however organized code helps you find what
your looking for.

• Modular – I hear this word tossed around a lot


when talking about programming. However, what
really is modular? I like to define it as being able to
take a part of your code and use it elsewhere with the
least amount of headache.

• Secure – All of the time spent on development can


be for nothing if it isn’t secure. Security in web
development is a must. It doesn’t matter the size of
the website, large or small, eventually someone will
try to break it. Someone will try to compromise it.

• Safe – While some people think of this as the same


as secure, for me safe PHP code means it handles
errors correctly. Great PHP code handles errors
correctly. If a PHP class fails, it should handle the
error properly. It should also throw errors correctly
when needed. If code is safe, I know that it will
behave as it should, and properly let me know when
it is not.

Features
• In php there is no need to specify data type for
variable declaration.
• It provides error platform compatibility, unlike some
other server side scripting language.

2.TRAINING
WORK
2.1Introduction about javascript:

JavaScript is a scripting language widely used for client-


side web development. It was the originating dialect of
the ECMA Script standard. It is a dynamic, weakly typed,
prototype-based language with first-class functions.
JavaScript was influenced by many languages and was
designed to look like Java, but be easier for non-
programmers to work with.

Although best known for its use in websites (as client-


side JavaScript), JavaScript is also used to enable
scripting access to objects embedded in other application.

Disadvantages of Js:-
• Client side JavaScript doesn’t allow the reading or
writing files.
• It can't be used for networking application.

• It doesn't have any Multi-Processing & Multi-


Threading capabilities.

Advantages of Js:-
• Less server Interaction.

• Immeidate Feedback to Visiter.

• Increase Interactivity.

• Richer Interface.

Types of Js:-
• Inline.

• Internal

• External

2.2Brief Introduction about HTML:

HTML, an initialism of Hyper Text Markup Language, is


the predominant markup language for web pages. It
provides a means to describe the structure of text-based
information in a document by denoting certain text as
links, headings, paragraphs, list, and so on and to
supplement that text with interactive forms, embedded
images, and other objects. HTML is written in the form of
tags, surrounded by angle brackets. HTML can also
describe, to some degree, the appearance and semantics
of a document, and can include embedded scripting
language code (such as JavaScript which can affect the
behavior of Web browsers and other HTML processors.

What is an html File?


• HTML is a format that tells a computer how to
display a web page. The documents themselves are
plain text files with special "tags" or codes that a
web browser uses to interpret and display
information on your computer screen.
• HTML stands for Hyper Text Markup Language
• An HTML file is a text file containing small markup
tags
• The markup tags tell the Web browser how to
display the page
• An HTML file must have an .htm or .html file
extension.

2.3Brief Introduction about Cascading Style


Sheets:

Cascading Style Sheets (CSS) is a style sheet language


used to describe the presentation of a document written in
a markup language. Its most common applications is to
style web pages written in HTML& XHTML, but the
language can be applied to kind of XML document,
including SVG & XUL.

CSS can be used locally by the readers of web pages to


define colors, fonts, layout, and other aspects of
document presentation. It is designed primarily to enable
the separation of document content (written in CSS).

STYLE SHEET PROPERTIES:-


1. Font properties:-
a. font-family
b. font-size
c. font-style
d. font-weight

2.Text properties:-
a. letter-spacing
b. word-spacing
c. vertical-align
d. text-decorate
3. Color and background properties:-
a. color
b. background-color
c. background-images
d. background-position
4. Box properties:-
a. margin-properties
b. border-properties

2.4DATABASE:

Introduction about MYSQL:

MYSQL is a relational data base and it is a part of the


solution of the LINUX open source evolution MYSQL
was developed by TcX in 1996. They created it because
they needed a relational database that could handle a
large amount of data on cheap hardware.

MySQL is the fastest relational database now in market.


If MySQL is the fastest and good why, it has not already
caught the attention of industry. The answer is that until
1999, LINUX and the open source product was
practically unknown. MYSQL primarily runs on UNIX
based system, though there are ports for almost every
plate forms in the market. Until the open source moment
and the availability of UNIX based operating system at
affordable price, no body looked at MYSQL as a
contender.
There are 2 types of statements in MY SQL.

 MySQL DDL statement


 MySQL DML Statement

DDL Statement

DDL stands for Data Definition Language. It includes


following commands:

 Create database
 Drop database
 Create Table
 Alter Table
 Drop Table

DML Statement

DML stands for Data Manipulation Language. It includes


following commands:

 Select
 Insert into
 Update
 Delete

3.METHODOLOGY &
TRAINING WORK

FRONTEND: - HTML, PHP.


The front-end is everything involved with what the user
sees, including design and some languages like HTML
and CSS. Most of the web courses created at digital-tutors
will be for the front-end and focused on design, but there
are already a bunch of front-end specific courses
available at plurasight as well.
There is lot of different jobs associated with the front-
end. Keep in mind that a lot of these titles are subjective,
and while front-end developer may mean something at
one company, it can mean something complexity
different at another company.
BACKEND:-My SQL Server.
The back-end, or the “server-side” is basically how the
site works, updates and changes. This refers to everything
the user can’t see in the browser, like databases and
servers.
Back-end developers, or at least back-end development,
is required to create a dynamic site.
FACEBOOK, GOOGLE maps and this blog are all
considered dynamic sites.
The web application creates, deletes, changes, renames,
etc items in the database. For example, when a customer
purchases a ticket, that creates an item in the database,
but when they have a change in their order or they wish to
cancel, the item in the database is change.
4. S/W & H/W
REQUIREMENT:
This section describes the various hardware & software
requirement by the developer during the development of
project & the tools used. It also includes specification
required by the client for implementing & using the
system. This includes the decision about the operating
system to be used. The alternatives are passed through the
Mandatory requirements and screening criteria, which is a
combination of the requirements and some implicit
requirements that the alternative should satisfy.
Hardware:
 Intel Pentium processor® at 2.66 GHz
 256 MB RAM minimum, Recommended
512 MB Ram
 And other regular hardware devices
Software:
 PHP
 Java Script
 MySQL
5.INTRODUCTION OF
PROJECT

 Before this, the management of the clinic is done


manually.
 There are some problem arise especially for the
data retrieval.
 Clinic has a problem of loss of patient data.
 There is also redundant patient data if the patient
not sure whether they have come to the clinic
before. So the clerk consider the patient as a new
patient and add new data
 Currently, the inventory for the medicine is done
manually. The management of the clinic also have
to takes times to check for the medicine inventory.

2.1 Modules
The modules for project are

 Administrative Module

 User Module

2.1.1 Administrative Module

This is the main module. All the operations are


performed in this module. The access to database is with
the admin so the administrator makes update to the
content of the website on periodic basis and admin has
right to grant privileges as well as can revoke privileges
from any user at any time he can even check for the
details of any user.Admin has very tough duty to manage
all the details as well as to monitor each and every user
to provide satisfaction to every customer who is linked
with our service.

2.1.2 User Module


User interacts with the website through user module.
User will be able to view the product details, can
monitor the phases which their developed project
undergoes, can also propose the desired changes. He
can also view the products of website that have been
updated by admin.

5.1.OBJECTIVE

 Online registration of Students: One of the


objective of this project is to ease of admission. All
the students are registered online. Firstly they fill an
online registration form completely and correctly so
that they are successfully registered here. The system
provides facility to students to see different.
 Online registration of Job Applicants: The
proposed system aims at all the job applicants who
want a job in specific field is registered online. They
fill an online registration form and upload their
resume and completed their registration successfully.
 Maintenance of Students/Staff records: The
proposed system aims at all the records of student
and staffis very carefully managed in the database.
 Searching of Student records: The proposed
system aims at the administrator has an authority to
search the record of any student and can edit their
record
 Managed Courses by Admin:In the proposed
system the administrator manages all the courses. He
has a authority to add a new course,remove an
existing record and edit an existing records.
 Upload Notes by Faculty:The proposed system
aims at all the staff members can upload notes.
 View/Download Assignments, Datesheets by
Students: The proposed system, it aims at the
students can view or downloads their assignments
and datesheets. Students can also view their results.

8. SNAPSHORT
OF PROJECT
Appointment
Receptionist Login
Doctor Login
Admin Login
9.CONCLUSION
It has been a great pleasure for me to work on this exciting and challenging project. This project
proved good for me as it provided practical knowledge of not only programming in PHP as
working of web based application and no some extent Windows Application and WAMP server
also about all handling procedure related with “Design and Development of university
Management System”. It also provides knowledge about the latest technology used in developing
web enabled application. This will provide better opportunities and guidance in future in
developing projects independently.

This project “Clinic 24/7“is used to manage the university. It provides us a simple interface for
maintenance of student information and Staff information. It can be used by educational
institutes or colleges to maintain the records of students easily. This project gives the great
control to handle the college or any system in any organization that working as college. Using
this website we can simply share all information about our organization to all over the world.
This project performs a complete application of modest size that uses PHP, JavaScript and
HTML to link a Tutorial with Database (MySQL).

18
REFRENCE
Reference for the Project Development was taken from the following Books and Web Sites.

 PHP book by Vasvani (TMH publications).


 Beginning PHP5 by WROX.
 www.google.com.
 www.wikipedia.com
 www.w3schools.com
 Informatics practices by Sumita Arora
 PHP for dream weaver By David Power
.

19

You might also like