0% found this document useful (0 votes)
31 views3 pages

Test 1

The document provides an overview of web browsers, HTML, and PHP, detailing their functionalities and applications in web development. It explains how HTML forms the structure of web pages and how PHP can be used for server-side scripting, command-line scripting, and client-side GUI applications. Additionally, it introduces a Student Result Management System with modules for students and staff, outlining the functionalities available to staff members.

Uploaded by

govindanm223
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)
31 views3 pages

Test 1

The document provides an overview of web browsers, HTML, and PHP, detailing their functionalities and applications in web development. It explains how HTML forms the structure of web pages and how PHP can be used for server-side scripting, command-line scripting, and client-side GUI applications. Additionally, it introduces a Student Result Management System with modules for students and staff, outlining the functionalities available to staff members.

Uploaded by

govindanm223
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/ 3

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 denothing
structural semantics for text such as headings, paragraphs, lists,links, quotes
and other items. It can embed script in languages such as javascript which
affect the behavior of HTML web pages.

Web browsers can also refer to Cascading Styles Sheets (CSS) to


define the appearance and layout of text and other material. The W3C,
maintainer of both the HTML and the CSS standards, encourages the use of
CSS over explicitly presentational HTML markup.

INTRODUCTION TO PHP

PHP is a simple yet powerful language designed for creating HTML content. This
chapter covers essential background on the PHP language. It describes the nature and history of
PHP, which platforms it runs on, and how to configure it. This chapter ends by showing you PHP
in action, with a quick walkthrough of several PHP programs that illustrate common tasks, such
as processing form data, interacting with a database, and creating graphics.

WHAT DOES PHP DO?

PHP can be used in three primary ways:

Server-side scripting
PHPwas originally designed to create dynamic web content, and it is
still best suited for that task. To generate HTML, you need the PHP parser
and a web server through which to send the coded documents. PHP has also
become popular for generating XML documents, graphics, Flash animations,
PDF files, and so much more.

Command-line scripting
PHPcan run scripts from the command line, much like Perl, awk, or the
Unix shell.You might use the command-line scripts for system administration
tasks, such as backup and log parsing; even some CRON job type scripts can
be done this way (nonvisual PHP tasks).

Client-side GUI applications


Using PHP-GTK, you can write full-blown, cross-platform GUI
applications in PHP. In this book, however, we concentrate on the first item:
using PHP to develop dynamic web content.PHPruns on all major operating
systems, from Unix variants including Linux, FreeBSD, Ubuntu, Debian, and
Solaris to Windows and Mac OS X. It can be used with all leading web
servers, including Apache, Microsoft IIS, and the Netscape/iPlanet servers.
Thelanguage itself is extremely flexible. For example, you aren’t limited to
outputting just HTML or other text files—any document format can be
generated. PHP has builtin support for generating PDF files, GIF, JPEG, and
PNG images, and Flash movies. One of PHP’s most significant features is its
wide-ranging support for databases. PHP code to perform common tasks,
such as database abstraction, error handling, and so on, with the PHP
Extension and Application Repository (PEAR). PEAR is a framework and
distribution system for reusable PHP components.

CHAPTER 3
SYSTEM DESIGN AND DEVELOPMENT
The System Design Specification(SDS) is a complete document that
contains all the information needed to develop the system.

3.1 MODULE DESCRIPTION


Student Result Management System divided into two modules–

 Student
 Admin
STAFF MODULE
The functionalities of Staff are
1. The Staff should login into the system with unique her/his username
and password.
2. If the user name and password are valid then he can gain access to
the system.
3. Staff views students Personal details.
4. Staff views his/her own Personal details.
5. Staff updates his/her Personal details.
6. Staff views attendance of students.9
7. Staff views Results of students.
8. Staff views Schedules.
The Staff can do the following actions
1. Login
2. Staff Actions
1. views personal details

You might also like