Programs using PHP script
Programs using PHP script
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"];
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!";
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.