Programming The Web 10CS73
Programming The Web 10CS73
Programming The Web 10CS73
PART - A
UNIT – 1 6 Hours
Fundamentals of Web, XHTML – 1: Internet, WWW, Web Browsers and Web Servers,
URLs, MIME, HTTP, Security, The Web Programmers Toolbox.
XHTML: Basic syntax, Standard structure, Basic text markup, Images, Hypertext Links.
UNIT – 2 7 Hours
XHTML – 2, CSS: XHTML (continued): Lists, Tables, Forms, Frames CSS:
Introduction, Levels of style sheets, Style specification formats, Selector forms, Property
value forms, Font properties, List properties, Color, Alignment of text, The box model,
Background images, The <span> and <div> tags, Conflict resolution.
UNIT – 3 6 Hours
Javascript: Overview of Javascript, Object orientation and Javascript, Syntactic
characteristics, Primitives, operations, and expressions, Screen output and keyboard
input, Control statements, Object creation and modification, Arrays, Functions,
Constructors, Pattern matching using regular expressions, Errors in scripts, Examples.
UNIT – 4 7 Hours
Javascript and HTML Documents, Dynamic Documents with Javascript: The Javascript
execution environment, The Document Object Model, Element access in Javascript,
Events and event handling, Handling events from the Body elements, Button elements,
Text box and Password elements, The DOM 2 event model, The navigator object, DOM
tree traversal and modification. Introduction to dynamic documents, Positioning
elements, Moving elements, Element visibility, Changing colors and fonts, Dynamic
content, Stacking elements, Locating the mouse cursor, Reacting to a mouse click, Slow
movement of elements, Dragging and dropping elements.
Programming the WEB 10CS73
PART - B
UNIT – 5 6 Hours
XML: Introduction, Syntax, Document structure, Document type definitions,
Namespaces, XML schemas, Displaying raw XML documents, Displaying XML
documents with CSS, XSLT style sheets, XML processors, Web services.
UNIT – 6 7 Hours
Perl, CGI Programming: Origins and uses of Perl, Scalars and their operations,
Assignment statements and simple input and output, Control statements, Fundamentals of
arrays, Hashes, References, Functions, Pattern matching, File input and output;
Examples.
The Common Gateway Interface; CGI linkage; Query string format; CGI.pm module; A
survey example; Cookies. Database access with Perl and MySQL
UNIT – 7 6 Hours
PHP: Origins and uses of PHP, Overview of PHP, General syntactic characteristics,
Primitives, operations and expressions, Output, Control statements, Arrays, Functions,
Pattern matching, Form handling, Files, Cookies, Session tracking, Database access with
PHP and MySQL.
UNIT – 8 7 Hours
Ruby, Rails: Origins and uses of Ruby, Scalar types and their operations, Simple input
and output, Control statements, Arrays, Hashes, Methods, Classes, Code blocks and
iterators, Pattern matching.
Overview of Rails, Document requests, Processing forms, Rails applications with
Databases, Layouts.
Text Books:
1. Robert W. Sebesta: Programming the World Wide Web, 4 Edition, Pearson
Education, 2008. (Listed topics only from Chapters 1 to 9, 11 to 15)
Reference Books:
1. M. Deitel, P.J. Deitel, A. B. Goldberg: Internet & World Wide Web How to Program,
4th Edition, Pearson Education, 2004.
2. Chris Bates: Web Programming Building Internet Applications, 3rd Edition, Wiley
India, 2007.
3. Xue Bai et al: The web Warrior Guide to Web Programming, Cengage Learning, 2003.
Programming the WEB 10CS73
UNIT - 1
Syllabus: UNIT - 1 Fundamentals of Web, XHTML – 1
Internet, WWW, Web Browsers and Web Servers; URLs;
MIME;
HTTP; Security; The Web Programmers Toolbox.
XHTML: Origins and evolution of HTML and XHTML
Basic syntax
Standard XHTML document structure;
Basic text markup. Images, Hypertext Links.
Unit1 Fundamentals
1.1 A Brief Intro to the Internet
Internet History
Internet Protocols
Internet History
1.1.1 Origins
In the 1960s the U.S Department of Defense (DoD) became interested in
developing a new large-scale computer network.
The purposes of this network were communications, program
sharing and remote computer access. One fundamental requirement was
that the network be sufficiently Robust so that even if some network nodes
were lost due to damage or some more reason the network could continue
to function.
The DoD‘s Advanced Research Projects Agency (ARPA) funded the
construction of the first such network, and the network the first such
network, and the network was named as ARPAnet in 1969.
The primary use of ARPAnet was simple text-based
communications through e-mail.
A number of other networks were developed during the late 1970‘s
and early 1980‘s with BITNET and CSNETT among them.
BITNET, which is an acronym for Because It‘s Time Network,
developed at City University of NewYork. It was built initially to provide
electronic mail and file transfers CSNET, which is an acronym for
Computer Science Network, connected the university of Delware, Purdue
Programming the WEB 10CS73
o au – Australia
o us – United states
Internet
Domain Name
Domain Name
Client System
Name Internet Web
Server Server
IP IP
By the mid – 198s, a collection of different protocols that run on top of TCP/IP had been
developed to support a variety of Internet users. Among those the most common were
telnet, ftp, usenet, mailto
Uses:
telnet – which was developed to allow a user on one computer on the Internet to
log on to and use another computer on the Internet.[Remote Login]
ftp[file transfer protocol] - which was developed to transfer file among computers
on the Internet.
usenet – Which was developed to serve as an electronic bulletin board.
mailto – which was developed to allow messages to be sent from the user of one
computer on the Internet to other users on other computer on the Internet.
connected to the Internet. Information that travels over the Internet does so via a
variety of languages known as protocols.
The World Wide Web, or simply Web, is a way of accessing information over the
medium of the Internet. The Web uses the HTTP protocol The Web also utilizes
browsers, such as Internet Explorer or Firefox, to access Web documents called
Web pages that are linked to each other via hyperlinks. Web documents also
contain graphics, sounds, text and video.
The Internet is the large container, and the Web is a part within the container.
But to be technically precise, the Net is the restaurant, and the Web is the most
popular dish on the menu.
Browsers are used to connect to the www part of the internet.
Here is a conceptual diagram of the Internet and how it contains many forms of online
communications
The Internet and the Web work together, but they are not the same thing. The Internet
provides the underlying structure, and the Web utilizes that structure to offer content,
documents, multimedia, etc.
The Internet is at its most basic definition an electronic communications network. It is the
structure on which the World Wide Web is based.
1.3 Web Browsers
Browsers are clients - always initiate, servers react (although sometimes servers
require responses)
Mosaic - NCSA (Univ. of Illinois), in early 1993
First to use a GUI, led to explosion of Web use
Initially for X-Windows, under UNIX, but was ported to other platforms
by late 1993
Most requests are for existing documents, using HyperText Transfer Protocol
(HTTP)
But some requests are for program execution, with the output being
returned as a document
Programming the WEB 10CS73
Form:
1. HTTP method domain part of URL HTTP ver.
2. Header fields
3. blank line semantics
4. Message body
1.7 The HyperText Transfer Protocol: Methods
GET - Fetch a document
POST - Execute the document, using the data in body
HEAD - Fetch just the header of the document
PUT - Store a new document on the server
DELETE - Remove a document from the server
An example of the first line of a request:
GET /degrees.html HTTP/1.1
Format of second line header field (optional)
Field name followed by a colon and the value of the field.
HTTP Headers
Four categories of header fields:
General, request, response, & entity
Common request fields:
Accept: text/plain
Accept: text/*
If-Modified_since: date
Common response fields:
Content-length: 488
Content-type: text/html
- Can communicate with HTTP without a browser
telnet blanca.uccs.edu http
Creates connection to http port on …….. server
http command eg:
GET /respond.html HTTP/1.1
Host: blanca.uccs.edu
1.7.2 Response phase
Form:
1. Status line
2. Response header fields
3. blank line
4. Response body
Status line format:
HTTP version status code explanation
Example: HTTP/1.1 200 OK
(Current version is 1.1)
Programming the WEB 10CS73
Status code is a three-digit number; first digit specifies the general status
1 => Informational
2 => Success
3 => Redirection
4 => Client error
5 => Server error
The header field, Content-type, is required
HTTP Response Example
HTTP/1.1 200 OK
Date: Tues, 18 May 2004 16:45:13 GMT
Server: Apache (Red-Hat/Linux)
Last-modified: Tues, 18 May 2004 16:38:38 GMT
Etag: "841fb-4b-3d1a0179"
Accept-ranges: bytes
Content-length: 364
Connection: close
Content-type: text/html, charset=ISO-8859-1
• Both request headers and response headers must be followed by a blank line
1.8 Note on security?
1.9 The Web Programmer’s Toolbox
Document languages and programming languages that are the building blocks of
the web and web programming
XHTML
Plug-ins
Filters
XML
Javascript
Java, Perl, Ruby, PHP
1.9.1 XHTML
To describe the general form and layout of documents
An XHTML document is a mix of content and controls
Controls are tags and their attributes
Tags often delimit content and specify something about how the
content should be arranged in the document
Attributes provide additional information about the content of a tag
1.9.2 Creating XHTML documents
XHTML editors - make document creation easier
Shortcuts to typing tag names, spell-checker,
WYSIWYG XHTML editors
Need not know XHTML to create XHTML documents
1.9.3 Plugins and Filters
Programming the WEB 10CS73
Plug ins
Integrated into tools like word processors, effectively converting them to
WYSIWYG XHTML editors
Filters
Convert documents in other formats to XHTML
Plugins and Filters: Advantages and Disadvantages
Advantages of both filters and plug-ins:
Existing documents produced with other tools can be converted to
XHTML documents
Use a tool you already know to produce XHTML
Disadvantages of both filters and plug-ins:
XHTML output of both is not perfect - must be fine tuned
XHTML may be non-standard
You have two versions of the document, which are difficult to synchronize
1.9.4 XML
A meta-markup language
Used to create a new markup language for a particular purpose or area
Because the tags are designed for a specific area, they can be meaningful
No presentation details
A simple and universal way of representing data of any textual kind
1.9.5 JavaScript
A client-side HTML-embedded scripting language
Only related to Java through syntax
Dynamically typed and not object-oriented
Provides a way to access elements of HTML documents and dynamically change
them
1.9.6 Java
General purpose object-oriented programming language
Based on C++, but simpler and safer
Our focus is on applets, servlets, and JSP
1.9.7 Perl
Provides server-side computation for HTML documents, through CGI
Perl is good for CGI programming because:
Direct access to operating systems functions
Powerful character string pattern-matching operations
Access to database systems
Perl is highly platform independent, and has been ported to all common platforms
Perl is not just for CGI
1.9.8 PHP
A server-side scripting language
An alternative to CGI
Programming the WEB 10CS73
Similar to JavaScript
Great for form processing and database access through the Web
1.10 Origins and Evolution of HTML
HTML was defined with SGML
Original intent of HTML: General layout of documents that could be displayed by
a wide variety of computers
Recent versions:
HTML 3.2 – 1997
Introduced many new features and deprecated many older features
HTML 4.01 - 1999 - A cleanup of 4.0
XHTML 1.0 - 2000
Just 4.01 defined using XML, instead of SGML
XHTML 1.1 – 2001
Modularized 1.0, and drops frames
We‘ll stick to 1.1, except for frames
Reasons to use XHTML, rather than HTML:
1. HTML has lax syntax rules, leading to sloppy and sometime ambiguous
documents
– XHTML syntax is much more strict, leading to clean and clear
documents in a standard form
2. HTML processors do not even enforce the few syntax rule that do exist in
HTML
3. The syntactic correctness of XHTML documents can be validated
1.11 Basic Syntax
Elements are defined by tags (markers)
Tag format:
Opening tag: <name>
Closing tag: </name>
The opening tag and its closing tag together specify a container for the
content they enclose
Not all tags have content
If a tag has no content, its form is <name />
The container and its content together are called an element
If a tag has attributes, they appear between its name and the right bracket of the
opening tag
Comment form: <!- … ->
Browsers ignore comments, unrecognizable tags, line breaks, multiple spaces, and
tabs
Tags are suggestions to the browser, even if they are recognized by the browser
Programming the WEB 10CS73
No closing tag!
Example of paragraphs and line breaks
On the plains of hesitation <p> bleach the
bones of countless millions </p> <br />
who, at the dawn of victory <br /> sat down
to wait, and waiting, died.
<!-- headings.html
An example to illustrate headings
-->
<html xmlns = ″http://www.w3.org/1999/xhtml″>
<head> <title> Headings </title>
</head>
<body>
<h1> Aidan‘s Airplanes (h1) </h1>
<h2> The best in used airplanes (h2) </h2>
<h3> "We‘ve got them by the hangarful" (h3)
</h3>
<h4> We‘re the guys to see for a good used
airplane (h4) </h4>
<h5> We offer great prices on great planes
(h5) </h5>
<h6> No returns, no guarantees, no refunds,
all sales are final (h6) </h6>
</body>
</html>
Programming the WEB 10CS73
Blockquotes
Content of <blockquote>
To set a block of text off from the normal flow and appearance of text
Browsers often indent, and sometimes italicize
Font Styles and Sizes (can be nested)
Boldface - <b>
Italics - <i>
Larger - <big>
Smaller - <small>
Monospace - <tt>
The <big> sleet <big> in <big> <i> Crete
</i><br /> lies </big> completely </big>
in </big> the street
The sleet in Crete
lies completely in the street
These tags are not affected if they appear in the content of a
<blockquote>, unless there is a conflict (e.g., italics)
Superscripts and subscripts
Subscripts with <sub>
Superscripts with <sup>
Example: x<sub>2</sub><sup>3</sup>
Display: x23
Inline versus block elements
All of this font size and font style stuff can be done with style sheets, but these
tags are not yet deprecated
Character Entities
Char. Entity Meaning
& & Ampersand
Programming the WEB 10CS73
• If the target is not at the beginning of the document, the target spot must be
marked
• Target labels can be defined in many different tags with the id attribute, as in
<h1 id = "baskets"> Baskets </h1>
• The link to an id must be preceded by a pound sign (#); If the id is in the
same document, this target could be
<a href = "#baskets">
What about baskets? </a>
• If the target is in a different document, the document reference must be
included
<a href = "myAd.html#baskets”> Baskets </a>
• Style note: a link should blend in with the surrounding text, so reading it
without taking the link should not be made less pleasant
• Links can have images:
<a href = "c210data.html“>
<img src = "smallplane.jpg"
alt = "Small picture of an airplane " />
Info on C210 </a>
Programming the WEB 10CS73
Forms; Frames;
CSS: Introduction; Levels of style sheets; Property value forms;
Style specification formats; Selector forms;
Font properties; List properties;
2.1 Lists
• Unordered lists
• The list is the content of the <ul> tag
• List elements are the content of the <li> tag
<h3> Some Common Single-Engine Aircraft </h3>
<ul>
<li> Cessna Skyhawk </li>
<li> Beechcraft Bonanza </li>
<li> Piper Cherokee </li>
</ul>
• Ordered lists
• The list is the content of the <ol> tag
• Each item in the display is preceded by a sequence value
<h3> Cessna 210 Engine Starting Instructions
</h3>
<ol>
<li> Set mixture to rich </li>
Programming the WEB 10CS73
2.2 Tables
• A table is a matrix of cells, each possibly having content
• The cells can include almost any element
• Some cells have row or column labels and some have data
• A table is specified as the content of a <table> tag
• A border attribute in the <table> tag specifies a border between the cells
• If border is set to "border", the browser‘s default width border is used
• The border attribute can be set to a number, which will be the border width
• Without the border attribute, the table will have no lines!
• Tables are given titles with the <caption> tag, which can immediately follow
<table>
• Each row of a table is specified as the content of a <tr> tag
• The row headings are specified as the content of a <th> tag
• The contents of a data cell is specified as the content of a <td> tag
<td> 1 </td>
<td> 0 </td>
</tr>
<tr>
<th> Lunch </th>
<td> 1 </td>
<td> 0 </td>
<td> 0 </td>
</tr>
</table>
• If the rows have labels and there is a spanning column label, the upper left corner
must be made larger, using rowspan
- Table Sections
- Header, body, and footer, which are the elements: thead, tbody, and tfoot
- If a document has multiple tbody elements, they are separated by thicker
horizontal lines
2.3 Forms
A form is the usual way information is gotten from a browser to a server
HTML has tags to create a collection of objects that implement this information
gathering
The objects are called widgets (e.g., radio buttons and checkboxes)
When the Submit button of a form is clicked, the form‘s values are sent to the
server
All of the widgets, or components of a form are defined in the content of a
<form> tag
The only required attribute of <form> is action, which specifies the URL
of the application that is to be called when the Submit button is clicked
action =
"http://www.cs.ucp.edu/cgi-bin/survey.pl"
If the form has no action, the value of action is the empty string
The method attribute of <form> specifies one of the two possible techniques of
transferring the form data to the server, get and post
get and post are discussed in Chapter 10
Widgets
Many are created with the <input> tag
The type attribute of <input> specifies the kind of widget being
created
Text
Programming the WEB 10CS73
3. Radio Buttons - collections of checkboxes in which only one button can be ‗checked‘
at a time
Every button in a radio button group MUST have the same name
Programming the WEB 10CS73
Widgets (continued)
3. Radio Buttons (continued)
If no button in a radio button group is ‗pressed‘, the browser often
‗presses‘ the first one
Age Category
<form action = "">
<p>
<input type = "radio" name = "age"
value = "under20" checked = "checked"> 0-19
<input type = "radio" name = "age"
value = "20-35"> 20-35
<input type = "radio" name = "age"
value = "36-50"> 36-50
<input type = "radio" name = "age"
value = "over50"> Over 50
</p>
</form>
- Widgets (continued)
- Widgets (continued)
5. Text areas - created with <textarea>
Usually include the rows and cols attributes to specify the size of the text
area
Default text can be included as the content of <textarea>
Scrolling is implicit if the area is overfilled
Please provide your employment aspirations
<form action = "">
Programming the WEB 10CS73
<p>
<textarea name = "aspirations" rows = "3‖
cols = "40">
(Be brief and concise)
</textarea>
</p>
</form>
Widgets (continued)
6. Reset and Submit buttons
Both are created with <input>
<input type = "reset" value = "Reset Form">
<input type = "submit‖ value = "Submit Form">
Submit has two actions:
1. Encode the data of the form
2. Request that the server execute the server-resident program specified as
the value of the action attribute of <form>
3. A Submit button is required in every form
--> SHOW popcorn.html and display it
2.4 Frames
• Frames are rectangular sections of the display window, each of which can display
a different document
• Because frames are no longer part of XHTML, you cannot validate a document
that includes frames
• The <frameset> tag specifies the number of frames and their layout in the window
• <frameset> takes the place of <body>
• Cannot have both!
• <frameset> must have either a rows attribute or a cols attribute, or both
(usually the case)
• Default is 1
• The possible values for rows and cols are numbers, percentages, and
asterisks
• A number value specifies the row height in pixels - Not terribly
useful!
Programming the WEB 10CS73
target = "descriptions">
apples </a>
<li> <a href = "bananas.html"
target = "descriptions">
bananas </a>
<li> <a href = "oranges.html"
target = "descriptions">
oranges </a>
</ul>
</body>
</html>
Nested frames - to divide the screen in more interesting ways
SHOW nested_frames.html
2.5 Introduction
The CSS1 specification was developed in 1996
CSS2 was released in 1998
CSS3 is on its way
CSSs provide the means to control and change presentation of HTML documents
CSS is not technically HTML, but can be embedded in HTML documents
Style sheets allow you to impose a standard style on a whole document, or even a
whole collection of documents
Style is specified for a tag by the values of its properties
2.6 Levels of Style Sheets
There are three levels of style sheets
• Inline - specified for a specific occurrence of a tag and apply only to that
tag
– This is fine-grain style, which defeats the purpose of style sheets -
uniform style
• Document-level style sheets - apply to the whole document in which they
appear
• External style sheets - can be applied to any number of documents
When more than one style sheet applies to a specific tag in a document, the lowest
level style sheet has precedence
• In a sense, the browser searches for a style property spec, starting with
inline, until it finds one (or there isn‘t one)
Form is a list of style rules, as in the content of a <style> tag for document-level
style sheets
Selector Forms: Simple
• The selector is a tag name or a list of tag names, separated by commas
• h1, h3
• p
• Contextual selectors
• ol ol li
Class Selectors
• Used to allow different occurrences of the same tag to use different style
specifications
• A style class has a name, which is attached to a tag name
p.narrow {property/value list}
p.wide {property/value list}
• The class you want on a particular occurrence of a tag is specified with the class
attribute of the tag
• For example,
<p class = "narrow">
...
</p>
...
<p class = "wide">
...
</p>
Generic Selectors
• A generic class can be defined if you want a style to apply to more than one kind
of tag
• A generic class must be named, and the name must begin with a period
Example,
.really-big { … }
Use it as if it were a normal style class
<h1 class = "really-big"> … </h1>
...
<p class = "really-big"> … </p>
id Selectors
An id selector allow the application of a style to one specific element
General form:
#specific-id {property-value list}
Example:
#section14 {font-size: 20}
Programming the WEB 10CS73
Pseudo Classes
Pseudo classes are styles that apply when something happens, rather than because
the target element simply exists
Names begin with colons
hover classes apply when the mouse cursor is over the element
focus classes apply when an element has focus
Pseudo Class Example
Property Values
Keywords - left, small, …
Not case sensitive
Length - numbers, maybe with decimal points
Programming the WEB 10CS73
Units:
px - pixels
in - inches
cm - centimeters
mm - millimeters
pt - points
pc - picas (12 points)
em - height of the letter ‗m‘
ex-height - height of the letter ‗x‘
No space is allowed between the number and the unit specification e.g.,
1.5 in is illegal!
Percentage - just a number followed immediately by a percent sign
URL values
url(protocol://server/pathname)
Colors
Color name
rgb(n1, n2, n3)
Numbers can be decimal or percentages
Hex form: #XXXXXX
Property values are inherited by all nested tags, unless overridden
Font Properties
font-family
Value is a list of font names - browser uses the first in the list it has
font-family: Arial, Helvetica, Courier
Generic fonts: serif, sans-serif, cursive, fantasy, and monospace (defined
in CSS)
Browser has a specific font for each
If a font name has more than one word, it should be single-quoted
font-size
Possible values: a length number or a name, such as smaller, xx-large, etc.
font-style
italic, oblique (useless), normal
font-weight - degrees of boldness
bolder, lighter, bold, normal
Could specify as a multiple of 100 (100 – 900)
font
For specifying a list of font properties
font: bolder 14pt Arial Helvetica
Order must be: style, weight, size, name(s)
> SHOW fonts.html and display
Programming the WEB 10CS73
Example:
<li style = "list-style-image:
url(bird.jpg)">
On ordered lists - list-style-type can be used to change the sequence
values
Property valueSequence type First four
Decimal Arabic numerals 1, 2, 3, 4
upper-alpha Uc letters A, B, C, D
lower-alpha Lc letters a, b, c, d
upper-roman Uc Roman I, II, III, IV
lower-roman Lc Roman i, ii, iii, iv
SHOW sequence_types.html and display
CSS2 has more, like lower-greek and hebrew
Colors
Color is a problem for the Web for two reasons:
1. Monitors vary widely
2. Browsers vary widely
- There are three color collections
1. There is a set of 16 colors that are guaranteed to be displayable by all
graphical browsers on all color monitors
black 000000 green 008000
silver C0C0C0 lime 00FF00
gray 808080 olive 808000
white FFFFFF yellow FFFF00
maroon 800000 navy 000080
red FF0000 blue 0000FF
purple 800080 teal 008080
fuchia FF00FF aqua 00FFFF
2. There is a much larger set, the Web Palette
216 colors
Use hex color values of 00, 33, 66, 99, CC, and FF
Inside back cover of this book has them!
3. Any one of 16 million different colors
</style>
…
<table border = "5">
<tr>
<th class = "red"> Apple </th>
<th class = "orange"> Orange </th>
<th class = "orange"> Screwdriver </th>
</tr>
</table>
The background-color property specifies the background color of elements
SHOW back_color.html and display
Alignment of Text
The text-indent property allows indentation
Takes either a length or a % value
The text-align property has the possible values, left (the default), center, right, or
justify
Sometimes we want text to flow around another element - the float property
The float property has the possible values, left, right, and none (the
default)
If we have an element we want on the right, with text flowing on its left,
we use the default text-align value (left) for the text and the right value for
float on the element we want on the right
<img src = "c210.jpg"
style = "float: right" />
Some text with the default alignment - left
Programming the WEB 10CS73
Padding – the distance between the content of an element and its border
Controlled by padding, padding-left, etc.
SHOW marpads.html and display
Background Images
The background-image property
SHOW back_image.html and display
Repetition can be controlled
background-repeat property
Possible values: repeat (default), no-repeat, repeat-x, or repeat-y
background-position property
Possible values: top, center, bottom, left, or right
The <span> and <div> tags
One problem with the font properties is that they apply to whole elements, which
are often too large
Solution: a new tag to define an element in the content of a larger element
- <span>
The default meaning of <span> is to leave the content as it is
<p>
Now is the <span> best time </span> ever!
</p>
Use <span> to apply a document style sheet to its content
<style type = "text/css">?
bigred {font-size: 24pt;
font-family: Ariel; color: red}
</style>
<p>
Now is the
<span class = "bigred">
best time </span> ever!
</p>
Programming the WEB 10CS73
The <span> tag is similar to other HTML tags, they can be nested and
they have id and class attributes
Another tag that is useful for style specifications: <div>
Used to create document sections (or divisions) for which style can be
specified
e.g., A section of five paragraphs for which you want some
particular style
Conflict Resolution
When two or more rules apply to the same tag there are rules for deciding which
rule applies
Document level
In-line style sheets have precedence over document style sheets
Document style sheets have precedence over external style sheets
Within the same level there can be conflicts
A tag may be used twice as a selector
A tag may inherit a property and also be used as a selector
Style sheets can have different sources
The author of a document may specify styles
The user, through browser settings, may specify styles
Individual properties can be specified as important
Precedence Rules
From highest to lowest
1. Important declarations with user origin
2. Important declarations with author origin
3. Normal declarations with author origin
4. Normal declarations with user origin
5. Any declarations with browser (or other user agent) origin
Tie-Breakers
Specificity
1. id selectors
2. Class and pseudo-class selectors
3. Contextual selectors
4. General selectors
Position
1. Essentially, later has precedence over earlier
Programming the WEB 10CS73
UNIT 3: JAVASCRIPT:
Syllabus:
Overview of Javascript; Object orientation and Javascript
General syntactic characteristics; Primitives,
operations, and expressions; Screen output and keyboard input;
Control statements; Object creation and modification; Arrays;
Functions; Constructor;
Pattern matching using regular expressions; Errors in scripts;
Examples.
Basics of JavaScript
4.1 Overview of JavaScript: Origins
Livescript
Originally developed by Netscape
Joint Development with Sun Microsystems in 1995
Supported by Netscape, Mozilla, Internet Exploer
4.1 JavaScript Components
Core
The heart of the language
Client-side
Library of objects supporting browser control and user interaction EG:
mouse clicks
Server-side
Library of objects that support use in web servers
Eg: commun. With database management system
4.1 Java and JavaScript
Differences
JavaScript has a different object model from Java
JavaScript is not strongly typed
Java 1.6 has support for scripting
http://java.sun.com/javase/6/docs/technotes/guides/scripting/index.html
Mozilla Rhino is an implementation of JavaScript in Java
http://www.mozilla.org/rhino/
4.1 Uses of JavaScript
Provide alternative to server-side programming
Servers are often overloaded
Client processing has quicker reaction time
JavaScript can work with forms
Programming the WEB 10CS73
JavaScript can interact with the internal model of the web page (Document Object
Model)
JavaScript is used to provide more complex user interface than plain forms with
HTML/CSS can provide
http://www.protopage.com/ is an interesting example
A number of toolkits are available. Dojo, found at http://dojotoolkit.org/,
is one example
4.1 Event-Driven Computation
Users actions, such as mouse clicks and key presses, are referred to as events
The main task of most JavaScript programs is to respond to events
For example, a JavaScript program could validate data in a form before it is
submitted to a server
Caution: It is important that crucial validation be done by the server. It is
relatively easy to bypass client-side controls
For example, a user might create a copy of a web page but remove all the
validation code.
4.1 XHTML/JavaScript Documents
When JavaScript is embedded in an XHTML document, the browser must
interpret it
Two locations for JavaScript server different purposes
JavaScript in the head element will react to user input and be called from
other locations
JavaScript in the body element will be executed once as the page is loaded
Various strategies must be used to ‗protect‘ the JavaScript from the browser
For example, comparisons present a problem since < and > are used to
mark tags in XHTML
JavaScript code can be enclosed in XHTML comments
JavaScript code can be enclosed in a CDATA section
4.2 Object Orientation and JavaScript
JavaScript is object-based
JavaScript defines objects that encapsulate both data and processing
However, JavaScript does not have true inheritance nor subtyping
JavaScript provides prototype-based inheritance
See, for example this Wikipedia article for a discussion:
http://en.wikipedia.org/wiki/Prototype-based_languages
4.2 JavaScript Objects
Objects are collections of properties
Properties are either data properties or method properties
Data properties are either primitive values or references to other objects
Primitive values are often implemented directly in hardware
The Object object is the ancestor of all objects in a JavaScript program
Programming the WEB 10CS73
/* … */
4.3 Statement Syntax
Statements can be terminated with a semicolon
However, the interpreter will insert the semicolon if missing at the end of a line
and the statement seems to be complete
Can be a problem:
return
x;
If a statement must be continued to a new line, make sure that the first line does
not make a complete statement by itself
Example hello.html
4.4 Primitive Types
Five primitive types
Number
String
Boolean
Undefined
Null
There are five classes corresponding to the five primitive types
Wrapper objects for primitive values
Place for methods and properties relevant to the primitive types
Primitive values are coerced to the wrapper class as necessary, and vice-
versa
4.4 Primitive and Object Storage
4.4 Numeric
and String Literals
Number values are represented internally as double-precision floating-point
values
Number literals can be either integer or float
Float values may have a decimal and/or and exponent
Programming the WEB 10CS73
Operators Associativity
*, /, % Left
+, - Left
//sampleDTD.xml
<?xml version = "1.0" encoding = "utf-8"?>
<!DOCTYPE vtu_stud_info SYSTEM "vtu.dtd">
<VTU>
<students>
<USN> 1RN10CS090 </USN>
<name> Santhosh B S</name>
<college> RNSIT </college>
<branch> CSE </branch>
<year> 2010 </year>
<email> [email protected] </email>
</students>
<students>
<USN> 1RN0IS016 </USN>
<name> Divya K </name>
<college> RNSIT </college>
<branch> ISE </branch>
<year> 2009 </year>
<email> [email protected] </email>
</students>
</VTU>
NAMESPACES
• One problem with using different markup vocabularies in the same document is that
collisions between names that are defined in two or more of those tag sets could result.
• An example of this situation is having a <table> tag for a category of furniture and a
Programming the WEB 10CS73
<table> tag from XHTML for information tables.
• Clearly, software systems that process XML documents must be capable of
unambiguously recognizing the element names in those documents.
• To deal with this problem, the W3C has developed a standard for XML namespaces (at
http://www.w3.org/TR/REC-xml-names).
• An XML namespace is a collection of element and attribute names used in XML
documents. The name of a namespace usually has the form of a uniform resource
identifier (URI).
• A namespace for the elements and attributes of the hierarchy rooted at a particular
element is declared as the value of the attribute xmlns.
The form of a namespace declaration for an element is
<element_name xmlns[:prefix] = URI>
• The square brackets indicate that what is within them is optional. The prefix, if
included, is the name that must be attached to the names in the declared namespace.
• If the prefix is not included, the namespace is the default for the document.
• A prefix is used for two reasons. First, most URIs are too long to be typed on every
occurrence of every name from the namespace. Second, a URI includes characters that
are invalid in XML.
• Note that the element for which a namespace is declared is usually the root of a
document.
• For ex: all XHTML documents in this notes declare the xmlns namespace on the root
element, html:
<html xmlns = “http://www.w3.org/1999/xhtml”>
• This declaration defines the default namespace for XHTML documents, which is
http://www.w3.org/1999/xhtml.
• The next example declares two namespaces. The first is declared to be the default
namespace; the
second defines the prefix, cap:
XML SCHEMAS
XML schemas is similar to DTD i.e. schemas are used to define the structure of
Programming the WEB 10CS73
the document
o They are used to specify the structure of its instance of XML document, including
which elements and attributes may appear in instance document. It also specifies where
and how often the elements may appear
o The schema specifies the datatype of every element and attributes of XML
namespace-centric
The above is an alternative to the preceding opening tag would be to make the
XMLSchema names the default so that they do not need to be prefixed in the
schema. Then the names in the target namespace would need to be prefixed.
DEFINING A SCHEMA INSTANCE
The above is an alternative to the preceding opening tag would be to make the
XMLSchema names the default so that they do not need to be prefixed in the
schema. Then the names in the target namespace would need to be prefixed.
its schema.
For example, if the root element is planes, we could have
<planes
xmlns = “http://cs.uccs.edu/planeSchema”
... >
he root element of an instance
document is for the schemaLocation attribute. This attribute is used to name the
standard namespace for instances, which includes the name XMLSchema-
instance.
xmlns:xsi = ―http://www.w3.org/2001/XMLSchema-instance‖
the instance document must specify the filename of the schema in which the
default namespace is defined. This is accomplished with the schema Location attribute,
which takes two values: the namespace of the schema and the filename of the schema.
ng everything, we get,
Global elements
are visible in the whole schema in which they are declared.lement tag.
<xsd:element name = “engine” type = “xsd:string” />
following element:
<engine> inline six cylinder fuel injected </engine>
value with the default attribute:
COMPLEX TYPES
Complex types are defined with the complexType tag. The elements that are the
content of an element-only element must be contained in an ordered group, an
unordered group, a choice, or a named group. The sequence element is used to
contain an ordered group of elements. Example:
XSV is an abbreviation for XML Schema Validator. If the schema and the
instance document are available on the Web, xsv can be used online, like the
XHTML validation tool at the W3C Web site. This tool can also be
downloaded and run on any computer. The Web site for xsv is
http://www.w3.org/XML/Schema#XSV.
The output of xsv is an XML document. When the tool is run from the command
line, the output document appears on the screen with no formatting, so it is a
bit difficult to read. The following is the output of xsv run on planes.xml:
documents, such as specific elements that are in specific positions in the document
or elements that have particular attribute values.
new XML document structures with XPointer. The XPath standard is given
at http://www.w3.org/TR/xpath.
OVERVIEW OF XSLT
-style programming language.
The XSLT document is the program to be executed; the XML document is the input
data to the program.
possibly modified, and merged with parts of
the XSLT
Programming the WEB 10CS73
document to form a new document, which is sometimes called an XSL document.
//6b.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>VTU Student Information</h2>
<table border="1">
Programming the WEB 10CS73
<tr bgcolor="#99cd32">
<th>name</th>
<th>usn</th>
<th>collegeName</th>
<th>branch</th>
<th>year</th>
<th>email</th>
</tr>
<xsl:for-each select="vtu/student">
<xsl:choose>
<xsl:when test="name = 'Santhosh B S'">
<tr bgcolor="yellow">
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="usn"/></td>
<td><xsl:value-of select="collegeName"/></td>
<td><xsl:value-of select="branch"/></td>
<td><xsl:value-of select="year"/></td>
<td><xsl:value-of select="email"/></td>
</tr>
</xsl:when>
<xsl:otherwise>
<tr >
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="usn"/></td>
<td><xsl:value-of select="collegeName"/></td>
<td><xsl:value-of select="branch"/></td>
<td><xsl:value-of select="year"/></td>
<td><xsl:value-of select="email"/></td>
</tr>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</table>
<h2>selected student is highlighted</h2>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
An XSLT style sheet is an XML document whose root element is the special-
purpose element stylesheet. The stylesheet tag defines namespaces as its
Programming the WEB 10CS73
attributes and encloses
the collection of elements that defines its transformations. It also identifies the
document as an XSLT document.
<xsl:stylesheet
version="1.
0"
xmlns:xsl=”http://www.w3.org/1999/XSL/Transform”>
In many XSLT documents, a template is included to match the root node of the
XML document.
<xsl:template match="/">
their definitions.
specify that their values
Programming the WEB 10CS73
in an XML document have default values, which must be copied into the XML
document during processing.
validating parser, the structure of the XML document must be checked to ensure that
it is legitimate.
THE SAX APPROACH
closing tags.
o Programmers can build documents, navigate their structure, and add, modify, or delete
elements and content.
o Provides a standard programming interface that can be used in a wide variety of
environments and applications.
o structural isomorphism.
application.
Programming the WEB 10CS73
document, that can most easily be done if the whole document is accessible at the
same time.
ts of the document are possible.
this approach avoids any processing of a document that is later found to be invalid.
WEB SERVICES
A Web service is a method that resides and is executed on a Web server, but that
can be called from any computer on the Web. The standard technologies to
support Web services are WSDL, UDDI, SOAP, and XML.
WSDL - It is used to describe the specific operations provided by the Web service, as
well as the protocols for the messages the Web service can send and receive.
UDDI - also provides ways to query a Web services registry to determine what specific
services are available.
SOAP - was originally an acronym for Standard Object Access Protocol, designed to
describe data objects.
XML - provides a standard way for a group of users to define the structure of their data
documents, using a subject-specific mark-up language.
Programming the WEB 10CS73
Control statements
In the last chapter you learned how to decode form data, and mail it to yourself.
However, one problem with the guestbook program is that it didn't do any error-
checking or specialized processing. You might not want to get blank forms, or
you may want to
Programming the WEB 10CS73
require certain fields to be filled out. You might also want to write a quiz or
questionnaire, and have your program take different actions depending on the
answers. All of these things require some more advanced processing of the form
data, and that will usually involve using control structures in your Perl code.
If Conditions
You've already seen if/elsif in action. The structure is always started by the word if,
followed by a condition to be evaluated, then a pair of braces indicating the beginning
and end of the code to be executed if the condition is true. The condition is enclosed in
parentheses:
if (condition) {
code to be executed
}
The condition statement can be anything that evaluates to true or false. In Perl, any string is
true except the empty string and 0. Any number is true except 0. An undefined value
(or undef) is false.You can also test whether a certain value equals something, or doesn't
equal something, or is greater than or less than something. There are different conditional
test operators, depending on whether the variable you want to test is a string or a number:
If it's a string test, you use the letter operators (eq, ne, lt, etc.), and if it's a numeric
test, you use the symbols (==, !=, etc.). Also, if you are doing numeric tests, keep
in mind that
$x >= $y is not the same as $x => $y. Be sure to use the correct operator!
Programming the WEB 10CS73
Here is an example of a numeric test. If $varname is greater than 23, the code inside
the curly braces is executed:
If you need to have more than one condition, you can add elsif and else blocks:
if ($varname eq "somestring") {
# do stuff here if the condition is true
}
elsif ($varname eq "someotherstring") {
# do other stuff
}
else {
# do this if none of the other conditions are met
}
The line breaks are not required; this example is just as valid:
Logical Operators
Operator Example Explanation
&&condition1 && True if condition1 and condition2 are
condition2 both true
Programming the WEB 10CS73
|| condition1 || condition2 True if either condition1 or condition2 is
true
and condition1 and condition2 Same as && but lower precedence or
condition1 or condition2 Same as || but lower precedence
Logical operators are evaluated from left to right. Precedence indicates which
operator is evaluated first, in the event that more than one operator appears on one
line. In a case like this:
condition2 && condition3 is evaluated first, then the result of that evaluation is used in the ||
evaluation.
and and or work the same way as && and ||, although they have lower precedence than their
symbolic counterparts.
Unless
if ($varname != 23) {
# code to execute if $varname is not 23
}
You should always validate data submitted on a form; that is, check to see that the form
fields aren't blank, and that the data submitted is in the format you expected. This is
typically done with if/elsif blocks.
Here are some examples. This condition checks to see if the "name" field isn't blank:
if (param('name') eq "") {
&dienice("Please fill out the field for your name.");
}
The above code will return an error if either the name or email fields are left blank.
If your form has more than one field containing the same fieldname, then the values
are stored sequentially in an array, accessed by param('fieldname').
You should always validate all form data — even fields that are submitted as hidden
fields in your form. Don't assume that your form is always the one calling your program.
Any external site can send data to your CGI. Never trust form input data.
Looping
Loops allow you to repeat code for as long as a condition is met. Perl has several loop
control structures: foreach, for, while and until.
Foreach Loops
foreach iterates through a list of values:
foreach my $i (@arrayname) {
# code here
}
This loops through each element of @arrayname, setting $i to the current array element for
each pass through the loop. You may omit the loop variable $i:
foreach (@arrayname) {
# $_ is the current array element
This sets the special Perl variable $_ to each array element. $_ does not need to
be declared (it's part of the Perl language) and its scope localized to the loop itself.
For Loops
Perl also supports C-style for loops:
The for statement uses a 3-part conditional: the loop initializer; the loop condition (how
long to run the loop); and the loop re-initializer (what to do at the end of each iteration of
the loop). In the above example, the loop initializes with $i being set to 1. The loop will
run for as long as $i is less than 23, and at the end of each iteration $i is incremented by 1
using the auto-increment operator (++).
The conditional expressions are optional. You can do infinite loops by omitting all three
conditions:
for (;;) {
# code here
}
While Loops
A while loop executes as long as particular condition is true:
while (condition) {
# code to run as long as condition is true
}
Until Loops
until is the reverse of while. It executes as long as a particular condition is NOT true:
until (condition) {
# code to run as long as condition is not true
Programming the WEB 10CS73
Infinite Loops
An infinite loop is usually written like so:
while (1) {
# code here
}
Obviously unless you want your program to run forever, you'll need some way to
break out of these infinite loops. We'll look at breaking next.
There are several ways to break from a loop. To stop the current loop iteration (and
move on to the next one), use the next command:
foreach my $i (1..20) {
if ($i == 13) {
next;
}
print "$i\n";
}
This example prints the numbers from 1 to 20, except for the number 13. When it
reaches 13, it skips to the next iteration of the loop.
foreach my $i (1..20) {
if ($i == 13) {
last;
}
print "$i\n";
}
This example prints the numbers from 1 to 12, then terminates the loop when it reaches 13.
next and last only effect the innermost loop structure, so if you have something like this:
Programming the WEB 10CS73
foreach my $i (@list1) {
foreach my $j (@list2) {
if ($i == 5 && $j == 23) {
last;
}
}
# this is where that last sends you
}
The last command only terminates the innermost loop. If you want to break out of
the outer loop, you need to use loop labels:
The loop label is a string that appears before the loop command (foreach, for, or
while). In this example we used OUTER as the label for the outer foreach loop
and INNER for the inner loop label.
Now that you've seen the various types of Perl control structures, let's look at how
to apply them to handling advanced form data.
Fundamentals of arrays
An array stores an ordered list of values. While a scalar variable can only store one
value, an array can store many. Perl array names are prefixed with an @-
sign. Here is an example:
my @colors = ("red","green","blue");
Each individual item (or element) of an array may be referred to by its index
number. Array indices start with 0, so to access the first element of the array
@colors, you use
$colors[0]. Notice that when you're referring to a single element of an array, you
Programming the WEB 10CS73
prefix the name with $ instead of @. The $-sign again indicates that it's a single
(scalar) value; the @-sign means you're talking about the entire array.
If you want to loop through an array, printing out all of the values, you could print
each element one at a time:
my @colors = ("red","green","blue");
foreach loop:
my @colors = ("red","green","blue");
foreach my $i (@colors) {
print "$i\n";
}
For each iteration of the foreach loop, $i is set to an element of the @colors array. In
this example, $i is "red" the first time through the loop. The braces {} define
where the loop begins and ends, so for any code appearing between the braces,
$i is set to the current loop iterator.
Notice we've used my again here to declare the variables. In the foreach loop, my
$i declares the loop iterator ($i) and also limits its scope to the foreach loop itself.
After the loop completes, $i no longer exists.
Of Arrays
my @people = ();
Programming the WEB 10CS73
Then Howard walks up. He's the first person in line. To add him to the @people array, use
the push function:
push(@people, "Howard");
Now Sara, Ken, and Josh get in line. Again they are added to the array using the push
function. You can push a list of values onto the array:
This pushes the list containing "Sara", "Ken" and "Josh" onto the end of the
@people array, so that @people now looks like this: ("Howard", "Sara", "Ken",
"Josh")
Now the ticket office opens, and Howard buys his ticket and leaves the line. To
remove the first item from the array, use the shift function:
my $who = shift(@people);
This sets $who to "Howard", and also removes "Howard" from the @people array,
so
@people now looks like this: ("Sara", "Ken", "Josh")
Suppose Josh gets paged, and has to leave. To remove the last item from the array,
use the pop function:
my $who = pop(@people);
Both shift and pop change the array itself, by removing an element from the
If you want to find out how many elements are in a given array, you can use the
scalar
function:
my $linelen =
to 4.
What if you want to print the name of the last person in line? Remember that Perl
array indices start with 0, so the index of the last element in the array is actually
length-1:
Perl also has a handy shortcut for finding the index of the last element of an array, the
$#
shortcut:
The $#arrayname syntax is one example where an #-sign does not indicate a comment. Array
Slices
You can retrieve part of an array by specifying the range of indices to retrieve:
If you want to find out if a particular element exists in an array, you can use the
grep
function:
my @results = grep(/pattern/,@listname);
is a regular expression for the pattern you're looking for. It can be a plain string, such
/pattern/
as /Box kite/, or a complex regular expression pattern.
/pattern/will match partial strings inside each array element. To match the entire array
element, use /^pattern$/, which anchors the pattern match to the beginning (^) and end ($)
of the string.
Sorting Arrays
You can do an alphabetical (ASCII) sort on an array of strings using the sort function:
@colors2 becomes the @colors array in alphabetically sorted order ("black", "cyan",
"magenta", "yellow" ). Note that the sort function, unlike push and pop, does not change
the original array. If you want to save the sorted array, you have to assign it to a variable.
If you want to save it back to the original array variable, you'd do:
You can invert the order of the array with the reverse function:
The sort function, by default, compares the ASCII values of the array elements (see
http://www.cgi101.com/book/ch2/ascii.html for the chart of ASCII values). This means if
you try to sort a list of numbers, you get "12" before "2". You can do a true numeric sort
like so:
{ $a <=> $b; } is actually a small subroutine, embedded right in your code, that gets
called for each pair of items in the array. It compares the first number ($a) to the
second number ($b) and returns a number indicating whether $a is greater than,
equal to, or less than $b.
This is done repeatedly with all the numbers in the array until the array is
completely sorted.
This joins @colors into a single string variable ($colorstring), with each element of
the
@colors array combined and separated by a comma and a space. In this
example
$colorstring becomes "cyan, magenta, yellow, black".
You can use any string (including the empty string) as the separator. The separator is
the first argument to the join function:
join(separator, list);
The opposite of join is split, which splits a string into a list of values. See Chapter 7 for more
on split.
Array or List?
Programming the WEB 10CS73
In general, any function or syntax that works for arrays will also work for a list of values:
hashes
A hash is a special kind of array — an associative array, or paired list of elements.
Each pair consists of a string key and a data value.
Perl hash names are prefixed with a percent sign (%). Here's how they're defined:
This particular example creates a hash named %colors which stores the RGB HEX
values for the named colors. The color names are the hash keys; the hex
codes are the hash values.
Remember that there's more than one way to do things in Perl, and here's the other
way to define the same hash:
The => operator automatically quotes the left side of the argument, so enclosing
quotes around the key names are not needed.
$colors{'red'}
Here, "red" is the key, and $colors{'red'} is the value associated with that key. In
this case, the value is "#ff0000".
You don't usually need the enclosing quotes around the value, either; $colors{red}
also works if the key name doesn't contain characters that are also Perl operators
(things like
+, -, =, * and /).
To print out all the values in a hash, you can use a foreach loop:
This example uses the keys function, which returns a list of the keys of the named
hash. One drawback is that keys %hashname will return the keys in unpredictable
order — in this example, keys %colors could return ("red", "blue", "green",
"black", "white") or ("red", "white", "green", "black", "blue") or any
combination thereof. If you want to print out the hash in exact order, you have to
specify the keys in the foreach loop:
Let's write a CGI program using the colors hash. Start a new file called colors.cgi:
Save it and chmod 755 colors.cgi, then test it in your web browser.
Notice we've had to add backslashes to escape the quotes in this double-quoted string:
qq creates a double-quoted string for you. And it's much easier to read without all those
backslashes in there.
$hashname{newkey} = newvalue;
Using our colors example again, here's how to add a new value with the key "purple":
$colors{purple} = "#ff00ff";
If the named key already exists in the hash, then an assignment like this overwrites the
previous value associated with that key.
Programming the WEB 10CS73
Determining Whether an Item Exists in a Hash
You can use the exists function to see if a particular key/value pair exists in the hash:
exists $hashname{key}
if (exists $colors{purple}) {
print "Sorry, the color purple is already in the hash.<br>\n";
} else {
$colors{purple} = "#ff00ff";
}
This checks to see if the key "purple" is already in the hash; if not, it adds it.
You can delete an individual key/value pair from a hash with the delete function:
delete $hashname{key};
%hashname = ();
Programming the WEB 10CS73
We've already seen that the keys function returns a list of the keys of a given
hash. Similarly, the values function returns a list of the hash values:
scalar($hashname);
This returns true or false value — true if the hash contains any key/value pairs. The
value returned does not indicate how many pairs are in the hash, however. If
you want to find that number, use:
scalar
keys(%hashname); Here's an
example:
my $numcolors = scalar(keys(%colors));
Programming the WEB 10CS73
print "There are $numcolors in this hash.\n";
Functions
The real power of PHP comes from its functions.In PHP, there are more than 700
built-in 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.
Syntax
function functionName()
{
code to be executed;
}
Give the function a name that reflects what the function does
The function name can start with a letter or underscore (not a number)
Example
<html>
<body>
<?php
function writeName()
writeName();
?>
</body>
</html>
Output:
Example 1
The following example will write different first names, but equal last name:
<html>
<body>
<?php function writeName($fname)
echo $fname .
writeName("Hege");
Programming the WEB 10CS73
echo "My brother's name is";
writeName("Stale");?></body></html>
Output:
<html>
<body>
writeName("Kai
writeName("Ståle","?");
?>
</body>
Programming the WEB 10CS73
</html>
Output:
Example
<html>
<body>
<?php
function add($x,$y)
{
$total=$x+$y;
return $total;
}
</body>
</html>
Output:
1 + 16 = 17
Pattern matching
Pattern-Matching Operators
Programming the WEB 10CS73
As if regular expressions weren't powerful enough, the m// and s/// operators also provide the
(likewise confined) power of double-quote interpolation. Since patterns are parsed
like double-quoted strings, all the normal double-quote conventions will work, including
variable interpolation (unless you use single quotes as the delimiter) and special
characters indicated with backslash escapes. (See "Specific Characters" later in this
chapter.) These are applied before the string is interpreted as a regular expression. (This
is one of the few places in the Perl language where a string undergoes more than one pass
of processing.) The first pass is not quite normal double-quote interpolation, in that it
knows what it should interpolate and what it should pass on to the regular expression
parser. So, for instance, any $ immediately followed by a vertical bar, closing parenthesis,
or the end of the string will be treated not as a variable interpolation, but as the traditional
regex assertion meaning end-of-line. So if you say:
$foo = "bar";
/$foo$/;
the double-quote interpolation pass knows that those two $ signs are functioning
differently. It does the interpolation of $foo, then hands this to the regular expression
parser:
/bar$/;
Another consequence of this two-pass parsing is that the ordinary Perl tokener finds the
end of the regular expression first, just as if it were looking for the terminating delimiter
of an ordinary string. Only after it has found the end of the string (and done any variable
interpolation) is the pattern treated as a regular expression. Among other things, this
means you can't "hide" the terminating delimiter of a pattern inside a regex construct
(such as a character class or a regex comment, which we haven't covered yet). Perl will
see the delimiter wherever it is and terminate the pattern at that point.
You should also know that interpolating variables into a pattern slows down the pattern
matcher, because it feels it needs to check whether the variable has changed, in case it has
to recompile the pattern (which will slow it down even further). See "Variable
Interpolation" later in this chapter.
Programming the WEB 10CS73
The tr/// transliteration operator does not interpolate variables; it doesn't even use regular
expressions! (In fact, it probably doesn't belong in this chapter at all, but we couldn't
think of a better place to put it.) It does share one feature with m// and s///, however: it
binds to variables using the =~ and !~ operators.
The =~ and !~ operators, described in Chapter 3, "Unary and Binary Operators", bind the
scalar expression on their lefthand side to one of three quote-like operators on their right:
m// for matching a pattern, s/// for substituting some string for a substring matched by a
pattern, and tr/// (or its synonym, y///) for transliterating one set of characters to another
set. (You may write m// as //, without the m, if slashes are used for the delimiter.) If the
righthand side of =~ or !~ is none of these three, it still counts as a m// matching operation,
but there'll be no place to put any trailing modifiers (see "Pattern Modifiers" later), and
you'll have to handle your own quoting:
Apart from the m// and s/// operators, regular expressions show up in two other places in
Perl. The first argument to the split function is a special match operator specifying what
not to return when breaking a string into multiple substrings. See the description and
examples for split in Chapter 29, "Functions". The qr// ("quote regex") operator also
specifies a pattern via a regex, but it doesn't try to match anything (unlike m//, which
does). Instead, the compiled form of the regex is returned for future use. See "Variable
Interpolation" for more information.
You apply one of the m//, s///, or tr/// operators to a particular string with the =~
binding operator (which isn't a real operator, just a kind of topicalizer,
linguistically speaking). Here are some examples:
Because s/// and tr/// change the scalar to which they're applied, you may only use them
on valid lvalues:
"onshore" =~ s/on/off/; # WRONG: compile-time error
However, m// works on the result of any scalar
expression:
if ((lc $magic_hat->fetch_contents->as_string) =~ /rabbit/) {
print "Nyaa, what's up doc?\n";
}
else {
print "That trick never works!\n";
}
But you have to be a wee bit careful, since =~ and !~ have rather high precedence--in our
previous example the parentheses are necessary around the left term.[3] The !~ binding
operator works like =~, but negates the logical result of the operation:
if ($song !~ /words/) {
print qq/"$song" appears to be a song without words.\n/;
}
Since m//, s///, and tr/// are quote operators, you may pick your own delimiters. These work in
the same way as the quoting operators q//, qq//, qr//, and qw// (see the section Section
5.6.3, "Pick Your Own Quotes" in Chapter 2, "Bits and Pieces").
$path =~ s#/tmp#/var/tmp/scratch#;
if ($dir =~ m[/bin]) {
print "No binary directories please.\n";
}
When using paired delimiters with s/// or tr///, if the first part is one of the four
customary bracketing pairs (angle, round, square, or curly), you may choose
different delimiters for the second part than you chose for the first:
s(egg)<larva>;
s{larva}{pupa};
s[pupa]/imago/;
Whitespace is allowed in front of the opening
delimiters: s (egg) <larva>;
s {larva}
{pupa}; s
Programming the WEB 10CS73
[pupa]
/imago/;
Each time a pattern successfully matches (including the pattern in a substitution), it
sets the $`, $&, and $' variables to the text left of the match, the whole match, and
the text right of the match. This is useful for pulling apart strings into their
components:
"hot cross buns" =~ /cross/;
print "Matched: <$`> $& <$'>\n"; # Matched: <hot > cross <
buns> print "Left: <$`>\n"; # Left: <hot >
print "Match: <$&>\n"; # Match: <cross>
[3] Without the parentheses, the lower-precedence lc would have applied to the
whole pattern match instead of just the method call on the magic hat object.
[4] Not $0, though, which holds the name of your program.
Once Perl sees that you need one of $`, $&, or $' anywhere in the program, it provides
them for every pattern match. This will slow down your program a bit. Perl uses a similar
mechanism to produce $1, $2, and so on, so you also pay a price for each pattern that
contains capturing parentheses. (See "Clustering" to avoid the cost of capturing while still
retaining the grouping behavior.) But if you never use $`$&, or $', then patterns without
capturing parentheses will not be penalized. So it's usually best to avoid $`, $&, and $' if
you can, especially in library modules. But if you must use them once (and some
algorithms really appreciate their convenience), then use them at will, because you've
Programming the WEB 10CS73
already paid the price. $& is not so costly as the other two in recent versions of Perl.
File Permissions
Most web servers run with very limited permissions; this protects the server (and
the system it's running on) from malicious attacks by users or web visitors. On
Unix systems, the web process runs under its own userid, typically the "web" or
"nobody" user. Unfortunately this means the server doesn't have permission
to create files in your directory. In order to write to a data file, you must usually
make the file (or the directory where the file will be created) world-writable —
or at least writable by the web process userid. In Unix a file can be made world-
writable using the chmod command:
A much better solution is to configure the server to run your programs with your
userid. Some examples of this are CGIwrap (platform independent) and
suEXEC (for Apache/Unix). Both of these force CGI programs on the web
server to run under the program owner's userid and permissions. Obviously if
Programming the WEB 10CS73
your CGI program is running with your userid, it will be able to create, read
and write files in your directory without needing the files to be world-writable.
The Apache web server also allows the webmaster to define what user and group
the server runs under. If you have your own domain, ask your webmaster to
set up your domain to run under your own userid and group permissions.
Permissions are less of a problem if you only want to read a file. If you set the
file permissions so that it is group- and world-readable, your CGI programs can
then safely read from that file. Use caution, though; if your program can read
the file, so can the webserver, and if the file is in your webspace, someone can
type the direct URL and view the contents of the file. Be sure not to put sensitive
data in a publicly readable file.
Opening Files
Reading and writing files is done by opening a file and associating it with a
filehandle. This is done with the statement:
open(filehandle,filename);
The filename may be prefixed with a >, which means to overwrite anything that's in
the file now, or with a >>, which means to append to the bottom of the existing
file. If both > and >> are omitted, the file is opened for reading only. Here are
some examples:
The filehandles in these cases are INF, OUTF and FH. You can use just about any
name for the filehandle.
Also, a warning: your web server might do strange things with the path your
programs run under, so it's possible you'll have to use the full path to
the file (such as
/home/you/public_html/somedata.txt), rather than just the filename. This is generally
not the case with the Apache web server, but some other servers behave
differently. Try opening files with just the filename first (provided the file is in the
same directory as your CGI program), and if it doesn't work, then use the full
Programming the WEB 10CS73
path.
One problem with the above code is that it doesn't check the return value of open
to ensure the file was really opened. open returns nonzero upon success, or undef
(which is a false value) otherwise. The safe way to open a file is as follows:
This uses the "dienice" subroutine we wrote in Chapter 4 to display an error message
and exit if the file can't be opened. You should do this for all file opens, because
if you don't, your CGI program will continue running even if the file isn't open,
and you could end up losing data. It can be quite frustrating to realize you've
had a survey running for several weeks while no data was being saved to the
output file.
The $! in the above example is a special Perl variable that stores the error code
returned by the failed open statement. Printing it may help you figure out why the
open failed.
Let's try this by modifying the guestbook program you wrote in Chapter 4. The
program already sends you e-mail with the information; we're going to have it
write its data to a file as well.
First you'll need to create the output file and make it writable, because your CGI
program probably can't create new files in your directory. If you're using Unix,
log into the Unix shell, cd to the directory where your guestbook program is
located, and type the following:
touch guestbook.txt
chmod 622
guestbook.txt
The Unix touch command, in this case, creates a new, empty file called
"guestbook.txt". (If the file already exists, touch simply updates the last-
modified timestamp of the file.) The chmod 622 command makes the file
read/write for you (the owner), and write-only for everyone else.
If you don't have Unix shell access (or you aren't using a Unix system), you should
Programming the WEB 10CS73
create or upload an empty file called guestbook.txt in the directory where your
guestbook.cgi program is located, then adjust the file permissions on it using your
FTP program.
#!/usr/bin/perl -wT
use CGI qw(:standard);
use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use
strict;
print header;
print start_html("Results");
$ENV{PATH} = "/usr/sbin";
open (MAIL, "|/usr/sbin/sendmail -oi -t -odq") or
&dienice("Can't fork for sendmail: $!\n");
print MAIL "To: recipient\@cgi101.com\n";
print <<EndHTML;
<h2>Thank You</h2>
<p>Thank you for writing!</p>
<p>Return to our <a href="index.html">home page</a>.</p>
EndHTML
dienice {
my($errmsg) = @_;
print "<h2>Error</h2>\n";
print "<p>$errmsg</p>\n";
print end_html;
exit;
}
Now go back to your browser and fill out the guestbook form again. If your CGI
program runs without any errors, you should see data added to the guestbook.txt
file. The resulting file will show the submitted form data in pipe-separated form:
Someone|[email protected]|comments here
Ideally you'll have one line of data (or record) for each form that is filled out.
This is what's called a flat-file database.
Unfortunately if the visitor enters multiple lines in the comments field, you'll end up
with multiple lines in the data file. To remove the newlines, you should
substitute newline characters (\n) as well as hard returns (\r). Perl has
powerful pattern matching and replacement capabilities; it can match the most
complex patterns in a string using regular expressions (see Chapter 13). The basic
syntax for substitution is:
$mystring =~ s/pattern/replacement/;
foreach my $p (param()) {
my $value = param($p);
$value =~ s/\n/ /g; # replace newlines with spaces
$value =~ s/\r//g; # remove hard returns
print OUT "$p = $value,";
}
Go ahead and change your program, then test it again in your browser. View the
guestbook.txt file in your browser or in a text editor and observe the results.
File Locking
CGI processes on a Unix web server can run simultaneously, and if two programs try
to open and write the same file at the same time, the file may be erased, and you'll
lose all of your data. To prevent this, you need to lock the files you are writing
to. There are two types of file locks:
A shared lock allows more than one program (or other process) to access the file
at the same time. A program should use a shared lock when reading from a file.
An exclusive lock allows only one program or process to access the file while the
lock is held. A program should use an exclusive lock when writing to a file.
File locking is accomplished in Perl using the Fcntl module (which is part of the
standard library), and the flock function. The use statement is like CGI.pm's:
The Fcntl module provides symbolic values (like abbreviations) representing the
correct lock numbers for the flock function, but you must specify: flock in the
use statement in order for Fctnl to export those values. The values are as follows:
These abbreviations can then be passed to flock. The flock function takes two
arguments: the filehandle and the lock type, which is typically a number. The
Programming the WEB 10CS73
number may vary depending on what operating system you are using, so it's best
to use the symbolic values provided by Fcntl. A file is locked after you open it
(because the filehandle doesn't exist before you open the file):
The lock will be released automatically when you close the file or when the
program finishes.
Keep in mind that file locking is only effective if all of the programs that read and
write to that file also use flock. Programs that don't will ignore the locks
held by other processes.
Since flock may force your CGI program to wait for another process to finish writing
to a file, you should also reset the file pointer, using the seek function:
offset is the number of bytes to move the pointer, relative to whence, which is one of
the following:
0 beginning of file
1 current file position
2 end of file
So seek(OUTF,0,2) repositions the pointer to the end of the file. If you were reading the
file instead of writing to it, you'd want to do seek(OUTF,0,0) to reset the
pointer to the beginning of the file.
The Fcntl module also provides symbolic values for the seek pointers:
Now you can use seek(OUTF,0,SEEK_END) to reset the file pointer to the end of the file, or
Programming the WEB 10CS73
seek(OUTF,0,SEEK_SET) to reset it to the beginning of the file.
Closing Files
When you're finished writing to a file, it's best to close the file, like so:
close(filehandle);
Files are automatically closed when your program ends. File locks are released when
the file is closed, so it is not necessary to actually unlock the file before closing
it. (In fact, releasing the lock before the file is closed can be dangerous and cause
you to lose data.)
Reading Files
There are two ways you can handle reading data from a file: you can either read one
line at a time, or read the entire file into an array. Here's an example:
If you were to use this code in your program, you'd end up with the first line
of
guestbook.txt being stored in $a, and the remainder of the file in array @b (with
each
element of @b containing one line of data from the file). The actual read occurs
with
<filehandle>; the amount of data read depends on the type of variable you save it into.
The following section of code shows how to read the entire file into an array, then
loop through each element of the array to print out each line:
This code minimizes the amount of time the file is actually open. The drawback
is it causes your CGI program to consume as much memory as the size of the
file. Obviously for very large files that's not a good idea; if your program
consumes more memory than the machine has available, it could crash the
whole machine (or at the very least make things extremely slow). To process
data from a very large file, it's better to use a while loop to read one line at a
time:
Let's try another example: a web poll. You've probably seen them on various news
sites. A basic poll consists of one question and several potential answers (as radio
buttons); you pick one of the answers, vote, then see the poll results on the next
page.
Start by creating the poll HTML form. Use whatever question and answer set you wish.
In this example we're using abbreviations for the radio button values. Our CGI
program will translate the abbreviations appropriately.
Now the voting CGI program will write the result to a file. Rather than having
this program analyze the results, we'll simply use a redirect to bounce the
viewer to a third program (results.cgi). That way you won't need to write the
results code twice.
#!/usr/bin/perl -wT
use CGI qw(:standard);
use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use
strict;
use Fcntl qw(:flock :seek); my
$outfile = "poll.out";
sub dienice {
my($msg) = @_;
print header;
Programming the WEB 10CS73
print start_html("Error"); print
h2("Error");
print $msg; print
end_html; exit;
}
Finally results.cgi reads the file where the votes are stored, totals the overall votes as
well as the votes for each choice, and displays them in table format.
#!/usr/bin/perl -wT
use CGI qw(:standard);
use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use
strict;
use Fcntl qw(:flock :seek); my
$outfile = "poll.out";
print header;
print start_html("Results");
dienice {
my($msg) = @_;
print h2("Error"); print
msg; print end_html;