Lab Course - II (Web Technologies - I)
Lab Course - II (Web Technologies - I)
Lab Course - II (Web Technologies - I)
Semester-V
Work Book For
Lab Course - II (Web Technologies - I)
Name
Academic Year
Objectives –
1) Students should carry this book during practical sessions of Computer Science.
2) Students should maintain separate journal for the source code and outputs.
3) Students should read the topics mentioned in reading section of this Book before coming
for practical.
4) Students should solve all exercises which are selected by Practical in-charge as a part of
journal activity.
5 Complete 4
6 Well-done 5
Instructions to the practical in-charge
1. Explain the assignment and related concepts in around ten minutes using whiteboard if
required or by demonstrating the software.
Total out of 05
Assignment 1: TO STUDY HTML, HTML5 & CSS
The internet is a collection of connected computers that communicate with each other. The
Web is a collection of protocols (rules) and software’s that support such communication.
In most situations when two computers communicate, one acts as a server and the other as
a client, known as client-server configuration.
Browsers running on client machines request documents provided by servers. Browsers are
so called because they allow the user to browse through the documents available on the
webservers. A browser initiates the communication with a server, requesting for a
document. The server that is continuously waiting for a request, locates the requested
document and sends it to the browser, which displays it to the user.
The most common protocol on the web is Hyper Text Transfer protocol (HTTP)
The most commonly used browsers are Microsoft Internet Explorer (IE).Netscape browser
and Mozilla. The most commonly used web servers are Apache and Microsoft Internet
Information server (IIS).
HTML Basics
Hyper Text Markup Language is a simple markup language used to create platform-
independent hypertext documents on the World Wide Web. Most hypertext documents
on theweb are written in HTML.
You will need a simple text editor to write html codes. For example you can use notepad
in windows and Vi editor in Linux operating system. You will need a browser to view
thehtml code, you can use IE on windows and Mozilla on Linux operating system.
HTML tags are somewhat like commands in programming languages. Tags are not
themselvesdisplayed, but tell the browser how to display the document’s contents.
Every HTML tag is made up of a tag name, sometimes followed by an optional list of
attributes, all of which appears between angle brackets < >. Nothing within the brackets
will bedisplayed in the browser. The tag name is generally an abbreviation of the tag’s
function.
5
Attributes are properties that extend or refine the tag’s function. The name and
attributes within a tag are not case sensitive. Tag attributes, if any, belong after the tag
name, each separated by one or more spaces. Their order of appearance is not
important. Most attributestake values, which follow an equal sign (=) after the
attribute’s name. Values are limited to 1024 characters in length and may be case
sensitive. Sometimesthe value needs to appear in quotation marks (double or single).
Most HTML tags are containers, meaning they have a beginning start tag and an end
tag. Anend tag contains the same name as the start tag, but it is preceded by a slash
(/). Few tags do not have end tags.
HTML5
HTML5 is still a work in progress. However, the major browsers support many of the
new HTML5 elements and APIs.
New features of HTML5 are based on HTML, CSS, DOM, and JavaScript. To better
handle today's internet use, HTML5 also includes new elements for drawing graphics,
adding media content, better page structure, better form handling, and several APIs to
drag/drop elements, find Geolocation, include web storage, application cache, web
workers, etc. Some of the most interesting new features in HTML5 are:
The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many
HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.
The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have
excellent support for HTML5.
<!DOCTYPE html>
6
The <!DOCTYPE> declaration helps the browser to display a web page correctly. There
are many different documents on the web, and a browser can only display an HTML
page 100%correctly if it knows the HTML type and version used.
The <header> tag specifies a header for a document or section. The <header> element
shouldbe used as a container for introductory content or set of navigational links.You
can have several <header> elements in one document.
The <footer> tag defines a footer for a document or section. A <footer> element
should contain information about its containing element. A footer typically contains
the author of thedocument, copyright information, links to terms of use, contact
information, etc.
Some HTML tags required to design simple web pages are given below
Tag Description
<!DOCTYPE> Defines the document type
<TITLE> One of the most important parts of a header is title. Title is the small text that
</TITLE> appears in title bar of viewer's browser.
<BODY> Every web page needs a body in which one can enter web page content
</BODY>
7
<CENTER> Centers enclosed text
</CENTER>
<BIG></BIG> Sets the type one font size larger than the surrounding text
<SMALL> Sets the type one font size smaller than the surrounding text
</SMALL>
<SUB></SUB> Formats enclosed text as subscript.
<Header> The <header> tag specifies a header for a document or section. The
<header> element should be used as a container for introductory content or set of
navigational links.
You can have several <header>elements in one document.
Note:A<header> tag cannot be placed within a <footer>, <address>or another
<header>element
<footer> The<footer>tag defines footer for a document or section.
A<footer>element should contain information about its containing element.
A footer typically contains the author of the document,copy right information, links
to terms of use, contact information, etc.
An HTML document is divided into two major portions: the head and the body. The head
contains information about the document, such as its title and “meta” information
describingthe contents. The body contains the actual contents of the document (the part
that is displayed in the browser window).
<!---MyfirstProgramme--!>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
8
A sample HTML5 document is given below
The<FONTsize=6>Fontsize</FONT>canbechanged<Br>aswellas
<FONTcolor=”red”>FontColor</FONT>
</BODY></HTML>
<!DOCTYPE html>
<html>
<body>
<b>Bold Text</b><br>
<i>Italic Text</i><br>
<sup>superscripted Text</sup><br>
<sub>subscripted Text</sub><br>
<big> Big Text><br>
<strong> String Text</strong><br>
<u>Underlined Text</u>
<font face="Arial" size="10" color="blue">Formatted Text</font>
</body></html>
Lists: Lists are a great way to provide information in a structured and easy to read format.
9
Tags used to create lists are given in the following table.
10
Tables: A table is a two dimensional matrix, consisting of rows and columns. HTML
tables are intended for displaying data in columns on a web page. Tables contains
information such as text, images, forms, hyperlinks etc.
Tags used to create table are given in the following table.
11
A sample HTML document for creating table is given below
<!DOCTYPEhtml>
<html>
<head>
</head>
<body>
<caption>List of Books</caption>
<tr>
<th align="center"colspan=2>Price</th>
</tr>
<tr>
<th align="center">Rs.</th>
<th align="center">Paise</th>
</tr>
Frames : Using frames, one can divide the screen into multiple scrolling sections,
each of which can display a different web page in to it. It allows multiple HTML
documents to be seen concurrently
Inline frames: It is a new frame tag introduced in HTML5. It is having same
properties and attribute options as in<FRAME>tag. An<iframe>tag is used to display
a web page within a web page. Inline frames can be included within the text block in
HTML5 document.
<iframesrc="URL"></iframe>
12
Tags used to add frames are given in the following table
13
<IFRAME> <iframe> Iframe Attribute 1. <iframesrc="C:\Docum
</IFRAME> entsandSettings\Desktop\
Tag is used to Attribute Specifications to a7.html"width="150"heig
specify an Adjust Appearance and ht="150"></iframe>
inline frame. Behavior
14
What is CSS?
CSS is an acronym for Cascading Style Sheets.CSS is a style language that defines
layout of HTML documents. For example, CSS covers fonts, colours, margins, lines,
height, width, background images, advanced positions and many other things. Just wait
and see!
HTML can be (mis-)used to add layout to websites. But CSS offers more options and is
more accurate and sophisticated. CSS is supported by all browsers today.
HTML is used to structure content. CSS is used for formatting structured content. The
language HTML was only used to add structure to text. An author could mark his text
by stating "this is a headline" or "this is a paragraph" using HTML tags such as <h1>
and <p>.
As the Web gained popularity, designers started looking for possibilities to add layout
to online documents. To meet this demand, the browser producers (at that time
Netscapeand Microsoft) invented new HTML tags such as for example <font> which
differed from the original HTML tags by defining layout - and not structure.
This also led to a situation where original structure tags such as <table> were
increasingly being misused to layout pages instead of adding structure to text. Many
new layout tags such as <blink> were only supported by one type of browser. "You
need browser X to view this page" became a common disclaimer on web sites. CSS
was invented to remedy this situation by providing web designers with sophisticated
layout opportunities supported by all browsers. At the same time, separation of the
presentation style of documents from the content of documents, makes site
maintenance a lot easier.
Advantages of CSS: CSS was a revolution in the world of web design. The concrete
benefits of CSS include:
15
How does CSS work?
In this assignment you will learn how to make your first style sheet. You will get to
know about the basic CSS model and which codes are necessary to use CSS in an
HTML document.
Many of the properties used in Cascading Style Sheets (CSS) are similar to those of
HTML.Thus, if you are used to use HTML for layout, you will most likely recognize
many of the codes. Let us look at a concrete example.
<body bgcolor="#FF0000">
body{background-color:#FF0000;}
As you will note, the codes are more or less identical for HTML and CSS. The above
example also shows you the fundamental CSS model:
rule=selector + declaration
16
But where do you put the CSS code? This is exactly what we will go over now.
One way to apply CSS to HTML is by using the HTML attribute style. Building on
the above example with the red background color, it can be applied like this:
:
<html>
<head>
<title>Example</title>
</head>
<body style="background-color:#FF0000;">
Another way is to include the CSS codes using the HTML tag <style>. For example like this:
<html>
<head>
<title>Example</title>
<style type="text/css">
{background-color:#FF0000;}
</style>
17
</head>
<body>
<p>This is a red page</p>
</body>
</html>
Samplecode1:
<!DOCTYPEhtml>
<html>
<head>
<style>bod
y
{
background-color:#d0e4fe;
h1
color:orange;
text align:center;
}
p
font-
family:"TimesNewRoman";font
-size:20px;
</style>
</head>
<body>
<h1>CSSexample!</h1>
18
<p>This is a paragraph.</p>
</body>
</html>
Method 3
External style sheets are separate files full of CSS instructions (with the file extension .css). When any web
page includes an external style sheet, its look and feel will be controlled by this CSS file (unless you decide
to override a style using one of these next two types). This is how you change a whole website at once. And
that's perfect if you want to keep up with the latest fashion in web pages without rewriting every page!
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body></html>
Creation of forms
Forms: HTML5 provides better & more extensive support for collecting user inputs
throughforms. A form can be placed anywhere inside the body of an HTML
document.
19
You can have more than one form in the document.
Tags used to add input forms are given in the following table.
20
<SELECT> Defines and <br>
</SELECT> displays Age Between:
name="(name to be passed to <select name=”age”
a the script as part of size=1>
set of name/value pair)" </select>
optional list rows="no. of
items rows" cols="(no.
fro of cols.)"
m
which the
user can
select one
or
more items.
<TEXTAREA> name=name of data field <textarea
Multi
</TEXTAREA> size=#of item s to display rows=10columns=40>
line text
multiple allows multiple </textarea>
entry
selections
widget
<OPTION> indicates <select name=”age”
a selected=default selection size=1>
possible value="data submitted if this <option selected>21-30
item within option is selected" <option>31-40
a select </select>
widget
HTML5 introduces 13 new input types. When viewed in a browser that doesn't support
them, these input types fall back to text input.
21
Number For • value: The initial
numerical value. If omitted, the <input type="number
input field is initially "min="0"
blank, but the max="20"step="2"
internal value is not value="10"name="so
consistent across me-name"/>
browsers.
• step: How much to
change the value
when you click on the
up or down arrows of
the control. The
default is 1.
• min, max: The
smallest
And largest values
that can be selected
with the up/down
arrows.
Range For • value: The initial
numerical value. The default is <input type="range"
input, but half way between the name="some-name"/>
unlike min and the max.
number, • step: How much to
the actual change the value
is not when you click on the
important. up or down arrows of
the control. The
default is1.
• min, max: The
smallest and largest
values that can be
selected. The default
form in is 0, and the
the default for max
is100
Date For entering • value: The initial
a date with value. The format is <input type="date"
no time "yyyy-mm-dd". name="some-name"/>
zone. • step: The step size
in days. The default
is1.
• min,max: The
smallest and largest
dates that can be
selected, formatted as
date strings of the
form "yyyy-mm-dd".
22
Time For entering
a time value <input type="time"/>
with hour,
minute,
seconds,
and
fractional
seconds,
but no time
zone.
Datetime-local For
entering a <input type="datetime-
date and local"/>
Time with
no time
zone.
Color For • value: The initial <input type="color”
choosing value. The intention value=”#ff0000"/>
color is that if a browser
through a pops up a color
Color well chooser, the initial
control Selection will
match the current
value.
23
Email For entering
a single • value: The initial <input type="email"
mail value(a legal email name="some-name"/>
address or a address). <input
list of email • list: The id of a type="email"
addresses. separate" data list" list="email-
element that defines a choices"
list of email name="some-
addresses for the user name"/>
to choose among <datalist
id="email-
choices">
<option label="Marty
Hall"
value="hall@coreservlets
.com">
<option label="Somebody
Else" value=
"someone@example
.com">
<option
label="ThirdPerson"
value="other@example.c
om">
...
</data list>
URL For entering • value: The initial <input type="url"
a single value, as an absolute name="some-name"/>
URL. URL. <input type="url"
• list: The id of a list="url-choices
separate "data list" "name="some-
element that defines a name"/>
list of URLs for the <data list
user to choose id="url-
among. choices">
</datalist>
Tel For entering • value: The initial <input type="tel"
A telephone value as a phone name="some-name"/>
number. number
24
Placeholder Gives the • Place holder: A Input type="text(or
user a hint small hint. This other)"placeholder="so
about what differs from the me text" name="some-
sort of data "value" attribute in name"/>
they should two ways. First, it
enter. will usually be
rendered differently
(e.g., light gray).
Second, it will
automatically
disappear when you
click in the text field.
• value: The initial
value. If you have
both
placeholder and value,
The value wins, and
place holder isignored.
25
autocomplete For specifying <input id="password
that a field confirmation"
should not type="password"
auto complete • value: The name="Password
or be initialvalue confirmation"
pre-filled by ON/OFF autocomplete="off">
the browser
based on a
user's past
entries.
List/data list Representsa • list: The id of a <input type="text
set of separate "data (or
Option list" element that other)"list="some-
elements that defines alist of id" name="some-
can be used in choices for the name"/>
combination user to choose <data list
with the new among. id="email-
listattribute choices">
for input to • The <option label="Display
make option Val1
dropdown element(i "value="InsertVal1">
menus. nside <option label="Display
"data Val2"value="InsertVal2">
list") <option label="Display
Val3"value="InsertVal3">
• label: Extra ...
information that </datalist>
may be
displayed in the
autocomplete
list. Browsers
might showthis
label or a
combination of
the label and the
value. The label
is never partof
the value that is
inserted in to the
text field when
the entry is
selected.
• value: The
value that
should be
inserted into
the textfield
when the entry
is selected.
26
Try this Code
<!DOCTYPE html>
<html>
<body>
<form>
<h3>Registration Form</h3>
Enter your Name <input type="text" name="t1">
Your Email Address<input type="email" name="t2">
Your Phone Number<input type="text" name="t3">
Your City
<select name=t4>
<option>Nashik</option>
<option>Pune</option>
<option> Mumbai</option>
</select>
Gender
Male <input type=radio name=r1>
Female<input type=radio name=r1>
<input type=submit value="display">
</form>
</body>
</html>
Every element that can be displayed on a web page is comprised of one or more rectangular boxes.
CSS box model typically describes how these rectangular boxes are laid out on a web page. These
boxes can have different properties and can interact with each other in different ways, but every box
has a content area and optional surrounding padding, border, and margin areas.
The following diagram demonstrates how the width, height, padding, border, and margin CSS
properties determines how much space an element can take on a web page.
27
The specific area that an element box may occupy on a web page is measured as follows-
div {
width: 300px;
border: 15px solid green;
padding: 50px;
margin: 20px;
}
A navigation bar is mostly displayed on the top of the page in the form of a horizontal list of links.
<html>
<head>
<style>
#ul-nb {
list-style: none;
margin:2px;
padding:3px;
}
#ul-nb li {
float:left;
padding:10px;
background:orange;
text-align: center;
margin-left:5px;
}
#ul-nbli:hover {
background:red;
opacity:0.8;
color:white;
}
</style>
</head>
28
<body>
<ul id="ul-nb">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Community</a></li>
<li><a href="#">Careers</a></li>
</ul>
</body>
</html>
Set-A
Q1) Create a HTML document to display the following screen.
List of Books
Price
Item No Item Name
Rs. Paise
SET B
Q 1. Write the HTML code for generating the form as shown below.
Apply the internal CSS to following form change the font size of the heading to 6pt and change the
color to red and also change the background color yellow
Q 2. Write HTML 5 code which generates the following output and display each element of list in
different size, color & font. Use external CSS to format the list
30
Q 3. Create HTML5 page with following specifications
i) Title should be about your City.
ii) Color the background by Pink color.
iii) Place your city name at the top of page in large text and in blue color. iv) Add names of
the landmarks in your city, each in different color, style and font
v) Add scrolling text about your City.
vi) Add any image at the bottom. (Use inline CSS to format the web page)
Set C.
Q 1. Design HTML 5 Page Using CSS which display the following Box
( use Box Model Property in CSS)
31
Q 2Design HTML 5 Page Using CSS Which Display the following Navigation Bar
Assignment Evaluation
32
Assignment: 2 Bootstrap
Prerequisites
Before proceeding with the Bootstrap tutorial, you should have some basic knowledge to implement
web applications using HTML, CSS, and JavaScript to understand the bootstrap framework and its
components.
What is Bootstrap?
• Bootstrap is a free front-end framework for faster and easier web development
• Bootstrap includes HTML and CSS based design templates for typography, forms, buttons,
tables, navigation, modals, image carousels and many other, as well as optional JavaScript
plugins
• Bootstrap also gives you the ability to easily create responsive designs
Bootstrap History
Bootstrap was developed by Mark Otto and Jacob Thornton at Twitter, and released as an open
source product in August 2011 on GitHub.
Responsive web design is about creating web sites which automatically adjust themselves to look
good on all devices, from small phones to large desktops.
Advantages of Bootstrap:
• Easy to use: Anybody with just basic knowledge of HTML and CSS can start using
Bootstrap
• Responsive features: Bootstrap's responsive CSS adjusts to phones, tablets, and desktops
• Mobile-first approach: In Bootstrap 3, mobile-first styles are part of the core framework
• Browser compatibility: Bootstrap is compatible with all modern browsers (Chrome,
Firefox, Internet Explorer, Edge, Safari, and Opera)
Bootstrap Installation
33
You can:
You can download the latest version of the Bootstrap framework from https://getbootstrap.com. The
download files will contain the compiled and minified versions of CSS and JavaScript plugins. We
can include any of these versions, i.e., either full or minified version based on our requirements.
The full (uncompressed) version contains the proper description of each method along with the
comments. It is user-friendly and easily debugged but slower to load and heavier than
the minified version. This should use mainly in the development process.
On the other hand, the minified version eliminates any unnecessary spaces and comments, and hence
it is not so user-friendly. This loads faster and is much lighter than the compiled version. So this
version should be used when your project goes live.
Now, add the downloaded files to your application root directory and include those file references in
the header (<head>) section by using src attribute of the <script> tag like as shown below.
<html lang="en">
<head>
<title>Bootstrap Example</title>
If you observe the above code, we included jQuery and Popper.js files in the header section because
if we want to use compiled bootstrap js file, we need to include jQuery and Popper.js before bootstrap
js file. So, you need to download and include those files in your application directory.
34
<html lang="en">
<head>
<title>Bootstrap Example</title>
</head>
<body> </body>
</html>
The CDN’s will provide a performance benefit by reducing the loading time because the bootstrap
files are hosted on multiple servers, and those are spread across the globe, so when a user requests
the file, it will be served from the nearest server to them.
When we request a webpage, the CDN files will cache in the browser. If we request the same web
page, then the CDN files will load from cache instead of downloading again from CDN.
Example1 :
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron text-center">
35
<h1>My First Bootstrap Page</h1>
<p>Resize this responsive page to see the effect!</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>Personal Information</h3>
<p>...</p>
</div>
<div class="col-sm-4">
<h3>Educational Information</h3>
<p> .. </p>
</div>
<div class="col-sm-4">
<h3>Job Profile</h3>
<p> .. </p>
</div>
</div>
</div>
</body>
</html>
Output:
36
Example 2 :
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
.fakeimg {
height: 200px;
background: #aaa;
}
</style>
</head>
37
<body>
<div class="jumbotron text-center" style="margin-bottom:0">
</div>
<span class="navbar-toggler-icon"></span>
</button>
<ul class="navbar-nav">
<li class="nav-item">
</li>
<li class="nav-item">
</li>
<li class="nav-item">
</li>
</ul>
</div>
</nav>
<div class="container" style="margin-top:30px">
<div class="row">
38
<div class="col-sm-4">
<h2>About Me</h2>
<h5>Photo of me:</h5>
<h3>Some Links</h3>
<li class="nav-item">
</li>
<li class="nav-item">
</li>
<li class="nav-item">
</li>
<li class="nav-item">
</li>
</ul>
<hr class="d-sm-none">
</div>
<div class="col-sm-8">
<h2>TITLE HEADING</h2>
<h5>Title description</h5>
39
<p>Add Some text..</p>
<p>Sunt in culpa qui officia deserunt mollincididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco.</p>
<br>
<h2>TITLE HEADING</h2>
<h5>Title description</h5>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum qua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco.</p>
</div>
</div>
</div>
<p>Footer</p>
</div>
</body>
</html>
Output:
Run above program and check output and do changes as per your webpage requirement
The Carousel plugin is a component for cycling through elements, like a carousel (slideshow).
Carousels require the use of an id (in this case id="myCarousel") for carousel controls to function
properly.
40
The .slide class adds a CSS transition and animation effect, which makes the items slide when
showing a new item. Omit this class if you do not want this effect.
The data-ride="carousel" attribute tells Bootstrap
41
to begin animating the carousel immediately when
the page loads.
The indicators are the little dots at the bottom of each slide (which indicates how many slides there
are in the carousel, and which slide the user is currently viewing).
The data-slide-to attribute specifies which slide to go to, when clicking on the specific dot.
The content of each slide is defined in a <div> with class .item. This can be text or images.
The .active class needs to be added to one of the slides. Otherwise, the carousel will not be visible.
This code adds "left" and "right" buttons that allows the user to go back and forth between the slides
manually.
The data-slide attribute accepts the keywords "prev" or "next", which alters the slide position relative
to its current position.
Add <div class="carousel-caption"> within each <div class="item"> to create a caption for each
slide:
Example :
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
41
<body>
<div class="container">
<h2>Carousel Example</h2>
<ol class="carousel-indicators">
</ol>
<div class="carousel-inner">
<div class="carousel-caption">
<h3>Los Angeles</h3>
</div>
</div>
<div class="item">
<div class="carousel-caption">
<h3>Chicago</h3>
<p>Thank you, Chicago!</p>
</div>
</div>
<div class="item">
<img src="Tulips.jpg" alt="New York" style="width:100%;">
<div class="carousel-caption">
<h3>New York</h3>
42
<p>We love the Big Apple!</p>
</div>
</div>
</div>
<span class="sr-only">Previous</span>
</a>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</body>
</html>
Output:
Run above program and check output and change images as per your webpage
requirement
Bootstrap Forms
Bootstrap's Default Settings
All textual <input>, <textarea>, and <select> elements with class .form-control have a width of
100%.
VerticalForm.html :
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Basic form</h2>
<form action="/action_page.php">
<div class="form-group">
<label for="email">Email:</label> 45
<input type="email" class="form-control" id="email" placeholder="Enter email"
name="email">
</div>
<div class="form-group">
44
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password"
name="pwd">
</div>
<div class="checkbox">
<label><input type="checkbox" name="remember"> Remember me</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>
In an inline form, all of the elements are inline, left-aligned, and the labels are alongside.
Note: This only applies to forms within viewports that are at least 768px wide!
45
Inlineform.html
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Inline form</h2>
<div class="form-group">
<label for="email">Email:</label>
</div>
<div class="form-group">
<label for="pwd">Password:</label>
</div>
<div class="checkbox">
<label><input type="checkbox" name="remember"> Remember me</label>
46
</div>
</form>
</div>
</body>
</html>
A horizontal form means that the labels are aligned next to the input field (horizontal) on large and
medium screens. On small screens (767px and below), it will transform to a vertical form (labels are
placed on top of each input).
HorizontalForm.html
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
47
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Horizontal form</h2>
<div class="form-group">
<div class="col-sm-10">
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label><input type="checkbox" name="remember"> Remember me</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>
48
Set A:
1. Create following Bootstrap Web Layout Design. There are 9 blocks of the region in
the arrangement. You can either place the images in them or the contents.
Set B
1. Create following layout using bootstrap
49
2. Create following News Template Layout using Bootstrap. At the top bar, you can include a
climate gadget and helpful links like part login and information exchange. Like in all other free news
site formats, mega menu choices are present to give you a chance to sort out the links.
Set C:
1. Create following one page website layout using bootstrap
Assignment Evaluation
51
Assignment No. 3 : To study functions & strings
User-defined functions
A function may be defined using syntax such as the following:
function function_name([argument_list…])
{
[statements]
[return return_value;]
}
Any valid PHP code may appear inside a function, even other functions and class definitions. The
variables you use inside a function are, by default, not visible outside that function. In PHP3
functions must be defined, before they are referenced. No such requirement exists in PHP4.
Example 1.
Code Output
<?php Hello
msg("Hello"); // calling a function
function msg($a) // defining a function
{
echo $a;
}
?>
Default parameters
You can give default values to more than one argument, but once you start assigning default values,
you have to give them to all arguments that follow as well.
Example 2.
Code Output
<?php Hello
function display($greeting, $message=”Good Day”) Good Day
{
echo $greeting;
echo “<br>”;
echo $message;
}
display(“Hello”);
?>
Variable parameters
You can set up functions that can take a variable number of arguments. Variable number of
arguments can be handled with these functions:
func_num_args : Returns the number of arguments passed
func_get_arg : Returns a single argument
func_get_args : Returns all arguments in an array
52
Code Output
<?php Passing 3 arg. to xconcat
echo “Passing 3 arg. to xconcat<br>”; Result is …How are you
echo “Result is …”;
xconcat(“How”,”are”,”you”);
function xconcat( )
{
$ans = “”;
$arg = func_get_args( );
for ($i=0; $i<func_num_args( ); $i++ )
{
$ans.= $arg[$i].” “;
}
echo $ans;
}
?>
Missing parameters
When using default arguments, any defaults should be on the right side of any non-default
arguments, otherwise, things will not work as expected.
Example 4.
Code Output
<?php Making a cup of Nescafe.
function makecoffee ($type = "Nescafe") Making a cup of espresso.
{
return "Making a cup of $type<br>";
}
echo makecoffee ();
echo makecoffee ("espresso");
?>
<?php Warning: Missing argument 2 in call to
function make ($type = "acidophilus", $flavour) make()…..
{ Making a bowl of raspberry
return "Making a bowl of $type $flavour<br>";
}
echo make ("raspberry"); // won’t work
?>
<?php Making a bowl of acidophilus raspberry.
function make ($flavour, $type = "acidophilus")
{
return "Making a bowl of $type $flavour<br>";
}
echo make ("raspberry"); //it works
?>
Variable functions
Assign a variable the name of a function, and then treat that variable as though it is the name of a
53
Example 5.
Code Output
<?php Function one
$varfun='fun1'; Function two
$varfun( ); Function three
$varfun='fun2';
$varfun( );
$varfun='fun3';
$varfun( );
function fun1( )
{
echo "<br>Function one";
}
function fun2( )
{
echo "<br>Function two";
}
function fun3( )
{
echo "<br>Function three";
}
?>
Anonymous functions
The function that does not possess any name are called anonymous functions. Such functions are
created using create_function( ) built-in function. Anonymous functions are also called as lambda
functions.
Example 6.
Code Output
<?php 30
$fname=create_function('$a,$b',
'$c = $a + $b; return $c;');
echo $fname(10,20);
?>
Strings
Strings in PHP
- Single quoted string (few escape characters supported, variable interpolation not possible)
- Double quoted string (many escape characters supported, variable interpolation possible)
- Heredoc
There are functions to print the string, namely print, printf, echo.
54
StringsExample 1.
Code Output
<?php Both strings are not equal
$a='amit'; String1 sorts before String2
$b='anil';
if($a==$b) //using operator
echo "Both strings are equal<br>";
else
echo "Both strings are not equal<br>";
if(strcmp($a,$b)>0) //using function
{
echo "String2 sorts before String1";
}
elseif(strcmp($a,$b)==0)
{
echo "both are equal";
}
elseif(strcmp($a,$b)<0) // negative value
{
echo "String1 sorts before String2";
}?>
<?php Both strings are not equal
$a=34;
$b='34';
if($a===$b) //using operator
echo "Both strings are equal<br>";
else
echo "Both strings are not equal<br>";
?>
Regular Expressions
Two types of regular expressions
POSIX – style
PERL – compatible
Purpose of using regular expressions
Matching
Substituting
Splitting
Example 3.
Code Output
<?php am found in $big
$big=<<< paragraph Bharat is my country. I am proud
India is my country. of it. I live in Maharashtra.
I am proud of it. India
I live in Maharashtra. is
paragraph; my
echo "<br>"; country.
$found=preg_match('/am/i',$big); I
if($found) am
echo "<br>am found in \$big"; proud
$replace=preg_replace('/India/','Bharat',$big); of
echo "<br>$replace"; it.
$split=preg_split('/ /',$big); I
foreach($split as $elem) live
{ echo "<br>$elem";} in
?> Maharashtra
SET A
Q: 1) Write a script to accept two integers(Use html form having 2 textboxes).
Write a PHP script to,
a. Find mod of the two numbers.
b. Find the power of first number raised to the second.
c. Find the sum of first n numbers (considering first number as n)
d. Find the factorial of second number.
(Write separate function for each of the above operations.)
Q: 2) Write a PHP script for the following: Design a form to accept a string.
a. Write a function to find the length of given string without using built in functions.
b. Write a function to count the total number of vowels i.e. (a,e,i,o,u) ) from the string.
c. Convert the given string to lowercase and then to Title case.
d. Pad the given string with “*” from left and right both the sides.
e. Remove the leading whitespaces from the given string.
56
f. Find the reverse of given string.(use built-in functions)
(Use radio buttons and the concept of function. Use ‘include’ construct or ‘require’ stmt.)
SET B
Q. 1) :Write a PHP script for the following: Design a form to accept two strings from the user.
a. Find whether the small string appears at the start of the large string.
b. Find the position of the small string in the big string.
c. Compare both the string for first n characters, also the comparison should not be case
sensitive.
Q. 2) : Write a PHP script for the following: Design a form having a text box and a drop down list
containing any 3 separators(e.g. #, |, %, @, ! or comma) accept a strings from the user and also a
separator.
a. Splitthe string into separate words using the given separator.
b. Replace all the occurrences of separator in the given string with some other separator.
c. Find the last word in the given string(Use strrstr() function).
Q. 3) : Write a PHP script having 3 textboxes. The first textbox should be for accepting name of the
student, second for accepting name of college and third for accepting a proper greeting
message. Write a function for accepting all the three parameters and generating a proper
greeting message. If any of the parameters are not passed, generate the proper greeting
message.
(Use the concept of missing parameters)
SET C
Q: 1) Write a PHP script for the following: Design a form to accept the marks of 5 different subjects
of a student, havingserial number, subject name & marks out of 100. Display the result in the
tabular format which will have total, percentage and grade. Use only 3 text boxes.(Use array
of form parameters)
Q: 2) Write a PHP script to accept 2 strings from the user, the first string should be a sentence and
second can be a word.
a. Delete a small part from first string after accepting position and number of characters to
remove.
b. Insert the given small string in the given big string at specified position without
removing any characters from the big string.
c. Replace some characters/ words from given big string with the given small string at
specified position.
d. Replace all the characters from the big string with the small string after a specified
position.
(Use substr_replace() function)
57
Q: 3)Using regular expressions check for the validity of entered email-id.
Assignment Evaluation
58
ASSIGNMENT NO. 4 : TO STUDY ARRAYS :
Associative array: An array which have strings as keys which are used to access the values.
Creating Arrays
OR
$price['gasket'] = 15.29;
$price['wheel'] = 75.25;
$price['tire'] = 50.00
2. An easier way to initialize an array is to use the array() construct, which builds an array from
its arguments. This builds an indexed array, and the index values (starting at 0) are created
automatically:
$addresses = array("spam@cyberpromo.net", "abuse@example.com",
"root@example.com");
To create an associative array with array(), use the => symbol to separate indices
(keys) from values:
$price = array( 'gasket' => 15.29, 'wheel' => 75.25, 'tire' => 50.00 );
60
Set A
1. Create your array of 30 high temperatures, approximating the weather for a spring month,
then find the average high temp, the five warmest high temps and the five coolest high temps.
Display the result on the browser.
Hint: a) Use array_slice b) the HTML character entity for the degree sign is & deg;.
2. Write a menu driven program to perform the following stack and queue related
operations:[Hint: use Array_push(), Array_pop(), Array_shift(), Array_unshift() ]
a) Insert an element in stack
b) Delete an element from stack
c) Display the contents of stack
d) Insert an element in queue
e) Delete an element from queue
f) Display the contents of queue
Set B
1. Write a PHP script that inserts a new item in an array at any position.
(hint : use array_splice())
2. Define an array. Find the elements from the array that matches the given
value using appropriate search function.
Set C
2. Write a menu driven program to perform the following operations on associative arrays:
a) Split an array into chunks
b) Sort the array by values without changing the keys.
c) Filter the odd elements from an array.
d) Merge the given arrays.
e) Find the intersection of two arrays.
f) Find the union of two arrays.
g) Find set difference of two arrays.
Assignment Evaluation
File : A file is nothing more than an ordered sequence of bytes stored on hard
disk,floppy disk CD-ROM or some other storage media. Operations on file are
Opening and closing a file. Reading a file and writing into file Deleting and
renaming a file navigating a file
A file handler is nothing more than an integer value that will be used to
identify the file you to work with until it is closed working with files
Function Name Description
fopen() Opening and closing a file
This is used to open a file ,returning a file handle associatedwith
opened file .It can take three arguments :fname,mode and optional
use_include_path
Ex:-$fp=fopen(“data.txt”,r);
We can also open a file on remote hostList
of modes used in fopen are:
Mode Purpose
R Open for reading only; place the file pointerat
the beginning of the file
r+ Open for reading and writing; place the file
pointer at the beginning of the file.
w Open for writing only; place the file pointer at
the beginning of the file and truncate thefile to
zero length. If the file does not exist, attempt to
create it.
w+ Open for reading and writing; place the file
pointer at the beginning of the file and truncate
the file to zero length. If the file does not exist,
attempt to create it.
A Open for writing only; place the file pointerat
the end of the file. If the file does not exist,
attempt to create it.
a+ Open for reading and writing; place the file
pointer at the end of the file. If the file does
not exist, attempt to create it.
fclose() This is used to close file, using its associated file handle as a
single argument
Ex:- fclose(fp);
fread( ) This function is used to extract a character string from a fileand
takes two arguments, a file handle and a integer length
Ex: fread($fp,10);
fwrite() This function is used to write data to a file and takes two
arguments, a file handle and a string
Ex: fwrite($fp,”HELLO”);
62
fgetc() Function can be used to read one character from file at a fileIt
takes a single argument ,a file handle and return just
one character from the file .It returns false when it reached toend of
file.
fgets() This function is used to read set of characters it takes two
arguments, file pointer and length.
It will stop reading for any one of three reasons:The
specified number of bytes has been read
A new line is encountered
The end of file is reached
fputs() This is simply an alias for fwrite() .
file() This function will return entire contents of file.This function will
automatically opens,reads,anclose the file.It has one
argument :a string containing the name of the file.It can alsofetch
files on remote host.
fpassthru() This function reads and print the entire file to the web browser.This
function takes one argument ,file handle.If youread a couple of lines
from a file before calling fpassthru()
,then this function only print the subsequent contents of afile.
Example: 2) a file can be written by using fwrite() function in php. For this
open filein write mode. file can be written only if it has write permission. if
the file does not exist then one new file will be created. the file the
permissions can be changed.
<?php
$filecontent="some text in file"; // store some text to enter inside the file
$file_name="test_file.txt"; // file name
$fp = fopen ($filename, "w"); // open the file in write mode, if it
does notexist then it will be created.
fwrite ($fp,$filecontent); // entering data to the file
fclose ($fp); // closing the file pointer
chmod($filename,0777); // changing the file permission.
?>
Example :
3) A small code for returning a file-size.
<?php
function dispfilesize($filesize)
{
if(is_numeric($fil
esize))
{
$decr = 1024; $step = 0;
$prefix =
array('Byte','KB','MB','GB','TB','PB');
while(($filesize / $decr) > 0.9)
{ $filesize = $filesize / $decr;
$step++;
}
return round($filesize,2).' '.$prefix[$step];
}
else
{
return 'NaN';
}
}
?>
65
Accessing Databases (PostgreSQL)
PostgreSQL supports a wide variety of built-in data types and it also provides an option to
the users to add new data types to PostgreSQL, using the CREATE TYPEcommand.
Table lists the data types officially supported by PostgreSQL. Most datatypes supported
by PostgreSQL are directly derived from SQL standards.
The following table contains PostgreSQL supported data types for your ready reference
Category Data type Description
Boolean boolean, bool A single true or false value.
Binary types bit(n) An n-length bit string (exactly n)
binary bits)
bit varying(n), varbit(n) A variable n-length bit string (upton)
binary nbits)
Character Types character(n) A fixed n-length character string
char(n) A fixed n-length character string
character varying(n)
varchar (n)
text A variable length character stringof
unlimited length
Numeric types smallint, int2 A signed 2-byte integer
integer, int, int4 A signed, fixed precision 4-byte
number
bigint, int8 A signed 8-byte integer, up to 18
digits in length
real, float4 A 4-byte floating point number
float8, float An 8-byte floating point number
numeric(p,s) An exact numeric type with
arbituary precision p, and scale s.
Currency money A fixed precision, U.S style
currency
serial An auto-incrementing 4-byte
integer
Date and time date The calendar date(day, monthand
types year)
time The time of day
time with time zone the time of day, including time
zone information
timestamp(includes time An arbitrarily specified length
Interval)
66
Functions used for PostgreSQL database manipulation
2 This routine resets the connection. It is useful for error recovery. Returns TRUE on success
or FALSE on failure.
4 This routine returns the name of the database that the given PostgreSQL connection
resource.
5 This submits a request to create a prepared statement with the given parameters and waits
for completion.
6 This routine sends a request to execute a prepared statement with given parameters and
waits for the result.
resource pg_query ([ resource $connection ], string $query )
7
This routine executes the query on the specified database connection.
8 This routine fetches one row of data from the result associated with the specified result
resource.
10 This routine returns the number of rows affected by INSERT, UPDATE, and DELETE
queries.
11 This routine returns the number of rows in a PostgreSQL result resource for example
number of rows returned by SELECT statement.
12 This routine closes the non-persistent connection to a PostgreSQL database associated with
the given connection resource.
Connecting to Database
pg_connect ( ) — is used to open a PostgreSQL connection.
Syntax :
If a second call is made to pg_connect() with the same connection_string as an existing connection,
the existing connection will be returned unless you
pass PGSQL_CONNECT_FORCE_NEW as connect_type
The following PHP code shows how to connect to an existing database on a local machine and finally
a database connection object will be returned.
$db=pg_connect(“dbname=sonal”);
user=postgres password=redhat”);
<?php
$host = "host = 127.0.0.1";
$port = "port = 5432";
$dbname = "dbname = testdb";
$credentials = "user = postgres password=pass123";
$db = pg_connect( "$host $port $dbname $credentials" );
if(!$db) {
echo "Error : Unable to open database\n";
} else {
echo "Opened database successfully\n";
?>
Now, let us run the above given program to open our database testdb: if the database is successfully
opened, then it will give the following message −
Closing Connection:
pg_close()- function closes a POSTgreSQL connection
syntax :
bool pg_close ([ resource $connection ] )
pg_close() closes the non-persistent connection to a PostgreSQL database associated with the given
connection resource.
Execute A Query :
pg_query — to Execute a query
syntax :
Create a Table
The following PHP program will be used to create a table in a previously created database −
<?php
$host = "host = 127.0.0.1";
$port = "port = 5432";
$dbname = "dbname = testdb";
$credentials = "user = postgres password=pass123";
$sql =<<<EOF
CREATE TABLE COMPANY
(ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
AGE INT NOT NULL,
ADDRESS CHAR(50),
SALARY REAL);
EOF;
$ret = pg_query($db, $sql);
if(!$ret) {
echo pg_last_error($db);
} else {
echo "Table created successfully\n";
}
pg_close($db);
?>
When the above given program is executed, it will create COMPANY table in your testdb and it will
display the following messages −
71
$credentials = "user = postgres password=pass123";
$sql =<<<EOF
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY)
VALUES (1, 'Paul', 32, 'California', 20000.00 );
pg_fetch_row
Description
pg_fetch_row() fetches one row of data from the result associated with the specified result resource.
Note: This function sets NULL fields to the PHP NULL value.
Parameters
result
row
Row number in result to fetch. Rows are numbered from 0 upwards. If omitted or NULL, the
next row is fetched.
Return Values
An array, indexed from 0 upwards, with each value represented as a string. Database NULL values
are returned as NULL.
FALSE is returned if row exceeds the number of rows in the set, there are no more rows, or on any
other error.
SELECT Operation
The following PHP program shows how we can fetch and display records from our COMPANY table
created in above example −
<?php
$host = "host = 127.0.0.1";
$port = "port = 5432";
$dbname = "dbname = testdb";
$credentials = "user = postgres password=pass123";
$sql =<<<EOF
SELECT * from COMPANY;
EOF;
74
?>
When the above given program is executed, it will produce the following result. Keep a note that
fields are returned in the sequence they were used while creating table.
ID = 2
NAME = Allen
ADDRESS = Texas
SALARY = 15000
ID = 3
NAME = Teddy
ADDRESS = Norway
SALARY = 20000
ID = 4
NAME = Mark
ADDRESS = Rich-Mond
SALARY = 65000
UPDATE Operation
The following PHP code shows how we can use the UPDATE statement to update any record and
then fetch and display updated records from our COMPANY table −
<?php
$host = "host=127.0.0.1";
$port = "port=5432";
$dbname = "dbname = testdb";
$credentials = "user = postgres password=pass123";
$sql =<<<EOF
SELECT * from COMPANY;
EOF;
When the above given program is executed, it will produce the following result −
Record updated successfully
ID = 2
NAME = Allen
ADDRESS = 25
SALARY = 15000
ID = 3
NAME = Teddy
ADDRESS = 23
SALARY = 20000
ID = 4
NAME = Mark
ADDRESS = 25
SALARY = 65000
ID = 1
NAME = Paul
ADDRESS = 32
SALARY = 25000
DELETE Operation
The following PHP code shows how we can use the DELETE statement to delete any record and then
fetch and display the remaining records from our COMPANY table −
<?php
$host = "host = 127.0.0.1";
$port = "port = 5432";
$dbname = "dbname = testdb";
$credentials = "user = postgres password=pass123";
$sql =<<<EOF
SELECT * from COMPANY;
EOF;
When the above given program is executed, it will produce the following result −
ID = 1
NAME = Paul
ADDRESS = 32
SALARY = 25000
SetA
Q1.Write a program to read one file and display the contents of the file with its size.
Event and Committee have many to many relationship. Write a script to accept title of event and
modify status committee as working.
SetB
Q1) Write a program to read a flat file “item.dat”, which contains details of 5 different items such
as Item code, Item Name, unit sold, and Rate. Display the Bill in tabular format.
SetC
Q 1. Write a menu driven program to perform various file operations. Accept filename from user.
a) Display type of file.
b) Display last access time of file
c) Display the size of file
d) Delete the file
Assignment Evaluation
80