Table of Contents
Assignment – 1
- Write a PHP script that displays your name entered by the user from the text box.
- Write a PHP script that performs arithmetic operations . Values must be entered by the user from the text box.
- Write a PHP script that uses while loop & do while loop. Starting & ending value of loop must be entered by user from text box.
- Write a PHP script that displays your name with the use of for loop.
- Write a PHP script that returns cube of a number given by user input using UDF.
- Write a PHP script that performs any 5 string functions.
- Write a PHP script that performs any 5 array functions.
- Write a PHP script that performs any 5 Math functions
- Write a PHP script that performs any 5 Date functions.
- Write a PHP script that displays current date(Date with suffix, Month name, Year, Day name) and the date before 1 year of the current date (Date with suffix, Month name, Year, Day name). For example: 5th January 2023, Thursday
- Write a PHP script that performs any 5 File handling functions.
- Write a PHP script that uploads any type of file by user input and move it to another folder
- Write a PHP script that fetches data of a specified student from database using AJAX
- Write a jQuery that uses load, change, blur, click, dblclick and resize event.
- Write a PHP script of Login page using Session.
Assignment – 2
- Write a PHP script that inserts records into tbl_bookinfo.
Database : db_book
Tablename : tbl_bookinfo
Fields : book_id int primary key auto increment
book_name varchar
book_publication varchar
book_price int - Write a PHP script that displays all the records of tbl_bookinfo in tabular format
- Write a PHP script that deletes a record by bookid and then show rest of the records in tabular form
- Write a PHP script that updates a record by bookid and then show rest of the records in tabular form
Assignment – 3
- Create an HTML form and validate it : Student’ First Name, Last Name, Date of Birth, Address, Mobile Number, Email using regular expression
- Write a Script that creates a PHP cookie which stores user’s firstname, lastname, mobile number in it from the HTML form
- Write a Script that displays below Pie Chart which shows the popularity of different social media using GD library functions
- Write a Script that displays a table of given integer entered by the user in tabular form
Assignment – 4
- Write a PHP script that creates a Class to demonstrate private and public properties.
- Write a PHP script that creates a Class to demonstrate Constructor and Destructor.
- Write a PHP script that creates a Class to demonstrate Inheritance with private and protected members.
- Write a PHP script that creates a Student Class to demonstrate methods.