0% found this document useful (0 votes)
6 views

php lab

The document outlines a series of PHP lab assignments that involve various programming tasks such as arithmetic operations, finding maximum values, calculating GCD/LCM, checking for prime numbers, and handling arrays. Additionally, it includes scripts for file operations, user authentication, image uploads, and sending SMS. A minor project is also mentioned, which involves developing a basic online exam system using a database.

Uploaded by

piyushnagar128
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

php lab

The document outlines a series of PHP lab assignments that involve various programming tasks such as arithmetic operations, finding maximum values, calculating GCD/LCM, checking for prime numbers, and handling arrays. Additionally, it includes scripts for file operations, user authentication, image uploads, and sending SMS. A minor project is also mentioned, which involves developing a basic online exam system using a database.

Uploaded by

piyushnagar128
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

PHP Lab Assignments

1) Write a PHP script to find sum of given two numbers from text box.
2) Write a PHP script to find max value in given two numbers from text box.
3) Write a PHP script to find max value in given three numbers from text box.
4) Write a PHP script to find GCD/HCF in given two numbers from text box.
5) Write a PHP script to find LCM in given two numbers from text box.
6) Write a PHP script to check that given value is prime or not input from text box.
7) Write a PHP script to print N natural numbers. N input from text box.
8) Write a PHP script to print N fibbonacci series numbers. N input from text box.
9) Write a PHP script to print N prime numbers. N input from text box.
10) Write a PHP script to Sort an Array. Array values input from text boxes.
11) Write a PHP script to Search a value in an Array. Array values input from text boxes.
12) Write a PHP script to search a given word in given Sentence. Input from text boxes.
13) Write a PHP script to print data from given file. File name input from file control.
14) Write a PHP script to save data in given file. File name and data input from user.
15) Write a PHP script to check that given username and password is valid or not using database.
16) Write a PHP scripts to develop login module using database.
17) Write a PHP scripts to upload given image in server side folder.
18) Write a PHP script to upload given image in table(database).
19) Write a PHP script to send SMS using way2sms.com free web service.
20) Write a PHP script to encode and decode given text .Text input from text box.

Minor Project: Basic online exam system using database.

You might also like