You are on page 1of 3

Institute of Innovation in Technology & Management, New Delhi

(Affiliated to GGSIP University)


Web Based Programming Lab (BCA-172)

Lecture- Topic/ Module Details with subtopics Date on which Signature


No delivered

L-1 Write regular expressions including modifiers,


operators, and metacharacters.
L-2 Write a program to show the usage of nested if
statement.
L-3 Write a Program in PHP for type Casting Of a
Variables.
Write a program to create a menu driven program and
L-4 show the usage of switch-case.
Write a program to show the usage of for/while/do
L-5
while loop.
L-6 Write a program to perform all four types of sorting.
Write a program to implement Array-
L-7 pad(),aaray_slice(),array_splice(),list() functions.(use
foreach wherever applicable).
Write a program to show the application of user
L-8
defined functions.
Write a program that Passes control to another page
L-9
(include, require, exit and die functions).
Write a program to validate the form data using
L-10
Filter_var() function.
L-11 Write a program to show the usage of Cookies.

L-12 Write a program to show the usage of Session.

L-13 Write a program to implement oops concepts.


Do Form handling In PHP Design a personal
Information form , then Submit & Retrieve the Form
L-14
Data Using $_GET(), $_POST() and $_REQUEST()
Variables.
Design A Login Form and Validate that Form using
L-15
PHP Programming .
Create Admin Login ,Logout form using session
L-16
variables.
L-17 Write a program to create a file.

1
Name: Aruna
Enrollment no:00390302021
Write a program that use various PHP library
L-18
functions, and that manipulate files and directories.
Write a program to read and display the content of
L-19
previously created file.
Write a program to modify the content of an existing
L-20
file.
Create a web page and which provides File uploading
L-21
and downloading a file.
Design a from which upload And Display Image in
L-22
PHP
Use phpMyAdmin and perform the following:
L-23 import, review data and structure, run SQL
statements, create users and privileges.
L-24 Write a program to create a mysql database.
Writeaprogram to create atable and insert few records
L-25
into it using form.
Write a program to select all the records and display it
L-26
in table.
L-27 Writeaprogram to modify (delete/modify/add)atable.
Write a PHP Script, to check whether the page is
L-28
called from https or http.
L-29 Write program to verify text data as per the pattern.
Create a dynamic website by incorporating the
following functionalities:
· Implement a basic registration and login
system, with styling,
· Make the database connection
· Make a connection to a MySQL database,
and log in with valid credentials.
L-30
· Create Dynamic, interactive and database - Driven
web application using php & mysql
· Perform some validation check. If any of these
operations cause an error, stop execution and print the
error message. The script should respond differently
depending on the situation.
Add a “Log Out” button to logout from the system

Name & Signature of Faculty Programme Director IQAC Coordinator Director

2
Name: Aruna
Enrollment no:00390302021
Ques 2 :- Write a program to show the usage of nested if statement.

Code:

<?php
$a=10;
$b=40;
$c=50;
if($a>$b)
{
if($a>$c)
echo $a." is greater.";
else
echo $c." is
greater."; }
else if($b>$a)
{
if($b>$c)
echo $b." is greater.";
else
echo $c." is
greater."; }
?>

Output:

3
Name: Aruna
Enrollment no:00390302021

You might also like