0% found this document useful (0 votes)
18 views9 pages

Programs using PHP script

Uploaded by

HEMALAKSHMI D
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
18 views9 pages

Programs using PHP script

Uploaded by

HEMALAKSHMI D
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 9

3.

(i)CREATING A SIMPLE PHP PROGRAM TO FIND WHETHER THE


NUMBER IS ODD OR EVEN

AIM:
To create a web page that allows users to enter a number, which will be
processed using PHP to determine if it is odd or even, and display the result back
to the user on the same page.
ALGORITHM:
1. Open the Text Document.
2. Start typing the program using required html tags.
3. Use php tags, to operate within the numbers.
4. Save the program.
5. Run the program to open the webpage.
6. Stop the program.

PROGRAM:
<html>
<head>
<title>Odd or Even Checker</title>
</head>
<body>
<h1>Odd or Even Checker</h1>
<form method="post">
Enter numbers (separated by commas):<br>
<input type="text" name="numbers"><br>
<input type="submit" value="Check"> </form> <br>
<?php
if(isset($_POST['numbers']))
{
$numbers = explode(',', $_POST['numbers']);
foreach($numbers as $number)
{
$number = trim($number);
if(is_numeric($number))
{
if($number % 2 == 0)
{
echo "{$number} is even.<br>";
}
else
{
echo "{$number} is odd.<br>"; }
}
else
{
echo "{$number} is not a number.<br>"; }
}
}
?>
</body>
</html>
OUTPUT:

RESULT:
Thus, the PHP program using HTML for finding odd or even numbers is
executed and verified successfully.
3.(ii) CREATING A SIMPLE PHP PROGRAM TO GET INPUT FROM
THE USER AND PERFORM ARITHMETIC CALCULATIONS

AIM:
To cerate a simple PHP program to get input from the user and perform
arithmetic operations.

ALGORITHM:
1. Start the program.
2. Use html tags to create the form.
3. Use php tag to calculate the numbers.
4. Save the program.
5. Run the program to open the webpage.
6. Stop the program.

PROGRAM:
<!DOCTYPE html>
<html>
<head>
<title>Arithmetic Calculation Example</title>
</head>
<body>
<form method="POST">
<label for="num1">Number 1:</label>
<input type="text" id="num1" name="num1"><br>
<label for="num2">Number 2:</label>
<input type="text" id="num2" name="num2"><br>
<input type="submit" value="Calculate">
</form>

<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$num1 = $_POST["num1"];
$num2 = $_POST["num2"];

$sum = $num1 + $num2;


$diff = $num1 - $num2;
$product = $num1 * $num2;
$quotient = $num1 / $num2;

echo "Sum: " . $sum . "<br>";


echo "Difference: " . $diff . "<br>";
echo "Product: " . $product . "<br>";
echo "Quotient: " . $quotient . "<br>";
}
?>
</body>
</html>

OUTPUT:
Number 1: 10
Number 2: 5
Calculate

Sum: 15
Difference: 5
Product: 50
Quotient: 2

RESULT:
Thus, the PHP program using HTML for performing arithmetic operations is
executed and verified successfully.
3.(iii) CREATING A SIMPLE PHP PROGRAM USING STRING
OPERATIONS.

AIM:
To cerate a simple PHP program to use string functions.

ALGORITHM:
1. Start the program.
2. Create the program using php tags.
3. Perform string operations such as length, reverse of a string, converting
uppercase and lowercase of the string and replacing the string.
4. Save the program.
5. Run the program to open the webpage.
6. Stop the program.
PROGRAM:
<?php
$str = "Hello, World!";

// Find the length of the string


$length = strlen($str);
echo "The length of the string '$str' is $length<br>";

// Reverse the string


$reversed = strrev($str);
echo "The reversed string of '$str' is '$reversed'<br>";

// Convert the string to uppercase


$upper = strtoupper($str);
echo "The uppercase of the string '$str' is '$upper'<br>";

// Convert the string to lowercase


$lower = strtolower($str);
echo "The lowercase of the string '$str' is '$lower'<br>";

// Replace text in the string


$newstr = str_replace("World", "PHP", $str);
echo "The string '$str' replaced with '$newstr'<br>";
?>

OUTPUT:
The length of the string 'Hello, World!' is 13
The reversed string of 'Hello, World!' is '!dlroW ,olleH'
The uppercase of the string 'Hello, World!' is 'HELLO, WORLD!'
The lowercase of the string 'Hello, World!' is 'hello, world!'
The string 'Hello, World!' replaced with 'Hello, PHP!'

RESULT:
Thus, the PHP program to preform string operations is executed and verified
successfully.

You might also like