PHP Lab Manual v0.2
PHP Lab Manual v0.2
Instructors Manual
Version 0.2
DEPARTMENT OF COMPUTING SCIENCE & ENGINEERING INTRODUCTION TO PHP USING IDE (IBM101)
List of Experiments for the Lab 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. Introduction to basic HTML tags. Write a Program to check and print whether a given number is even or odd. Write a program to compute net amount from the given quantity purchased and rate per quantity. Discount @10% is allowed if the quantity purchased exceeds 100. Write a program to find largest among three numbers using ternary operators. Write a program to print sum of digits of a given number. (using while loop) Write a program to print Fibonacci series upto a given number. Write a program to enter numbers till the user wants. At the end it should display the count of positive, negative and zeros entered. (Using do-while loop) Write a function countWords ($str) that takes any string of characters and finds the Number of times each word occurs. You should ignore the distinction between capital and lowercase letters. Create a form with one text field and submit buttons for string length, string reverse and uppercase, lowercase, string replace. Display the result accordingly. Write a Menu-Driven program to implement a calculator which performs only addition, subtraction, multiplication and division. The operation should happen based on the user choice. (use switch case) Write a function to swap two string values using call by value and call by references. Write a program that will accept an array of integers as input, and output an array where for each item in the source array, the new array will perform the following operations: For even numbers divide by 2 For odd numbers multiply by 3 Create an associative array using the countries as keys, the cities as values and transform it into 2dimensional array and display the data as a table. Given two strings A and B, how would you find out if the characters in B were a subset of the characters in A? Write a program that create a file and write contents to it and display it. Then append some data to it. Create a login form with two text fields called login and password. When user enters Galgotias as a user name and university as a password it should be redirected to a Welcome.HTML page or to Sorry.HTML in case of wrong username/password. Write a PHP program using Java Script to convert the decimal number to its binary equivalent. You must use a form to accept the number from the user. Write a PHP code that define class Student with attributes RollNo, Name, Branch, and Year, create 3 instances of it, sets the values of each instance appropriately and print the values of all attributes. Write a function calculateAverage () which takes four int arguments which are marks for four courses in the semester and returns their average as a float. The calculateAverage () function should take only valid range for marks which is between 0 - 100. If the marks are out of range is should throw an OutOfRangeException and handles it. Create a form with a text box asking to enter your favorite city with a submit button when the user enters the city and clicks the submit button another php page should be opened displaying Welcome to the city. *******
SESSION2012-13/WINTER SEMESTER
20.
Table of Contents
1. 2. 3. 4. 5. 6. 7. 8. 9. Introduction to basic HTML tags. ................................................................................................................. 1 Write a Program to check and print whether a given number is even or odd. ........................................ 3 Write a program to compute net amount from the given quantity purchased and rate per quantity. Discount @10% is allowed if the quantity purchased exceeds 100. ........................................................ 4 Write a program to find largest among three numbers using ternary operator...................................... 5 Write a program to print sum of digits of a given number. (using while loop) ....................................... 6 Write a program to print Fibonacci series upto a given number. ............................................................. 8 Write a program to enter numbers till the user wants. At the end it should display the count of positive, negative and zeros entered. (Using do-while loop) .................................................................. 10 Write a function countWords ($str) that takes any string of characters and finds theNumber of times each word occurs. You should ignore the distinction between capital and lowercase letters. ............. 11 Create a form with one text field and submit buttons for string length, string reverse and uppercase, lowercase, string replace. Display the result accordingly. ....................................................................... 14
10. Write a Menu-Driven program to implement a calculator which performs only addition, subtraction, multiplication and division. The operation should happen based on the user choice. (use switch case) ...................................................................................................................................................................... 17 11. Write a function to swap two string values using call by value and call by references. ....................... 20 12. Write a program that will accept an array of integers as input, and output an array where for each item in the source array, the new array will perform the following operations:For even numbers divide by 2 (b)For odd numbers multiply by 3 ....................................................................................... 22 13. Create an associative array using the countries as keys, the cities as values and transform it into 2dimensional array and display the data as a table. .................................................................................. 23 14. Given two strings A and B, how would you find out if the characters in B were a subset of the characters in A? ........................................................................................................................................... 25 15. Write a program that creates a file and writes contents to it and display it. Then append some data to it. .................................................................................................................................................................. 26 16. Create a login form with two text fields called login and password. When user enters Galgotias as a user name and university as a password it should be red irected to a Welcome.HTML page or to Sorry.HTML in case of wrong username/password. ................................................................................ 28 17. Write a PHP program using Java Script to convert the decimal number to its binary equivalent. You must use a form to accept the number from the user. ............................................................................. 30 18. Write a PHP code that define class Student with attributes RollNo, Name, Branch, and Year, create 3 instances of it, sets the values of each instance appropriately and print the values of all attributes. . 32 19. Write a function calculateAverage () which takes four int arguments which are marks for four courses in the semester and returns their average as a float. The calculateAverage () function should take only valid range for marks which is between 0 - 100. If the marks are out of range is should throw an OutOfRangeException and handles it. ....................................................................................... 34
20. Create a form with a text box asking to enter your favorite city with a submit button when the user
enters the city and clicks the submits button another php page should be opened displaying Welcome to the city. ................................................................................................................................ 35
SOLUTIONS TO EXPERIMENTS
EXPERIMENT NO 1: AIM OF EXPERIMENT: Introduction to basic HTML tags. OBJECTIVE: Introduction to basic HTML tags. Such as 1. <HTML> 2. <BODY> 3. <BR> 4. <TABLE> 5. <A HREF> 6. <IMG> THEORY:
The HTML code for a link is simple. It looks like this: <a href="url">Link text</a> The href attribute specifies the destination of a link Syntax for defining an image: <img src="url" alt="some_text">
SOURCE CODE:
<html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> <table border="1"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table>
My First Heading
My first paragraph. How the HTML code looks in your browser: Header 1 Header 2 row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2
<p><i>This text is italic</i></p> <p><em>This text is emphasized</em></p> <p><code>This is computer output</code></p> <p>This is<sub> subscript</sub> and <sup>superscript</sup></p> </body> </html>
This is
subscript
and
superscript
2 | Page
EXPERIMENT NO 2: AIM OF EXPERIMENT: Write a Program to check and print whether a given number is even or
odd.
OBJECTIVE
Illustrate use of modulo operator. If statement THEORY (IF ANY) SOURCE CODE: Case 1: When number is given <html> <body> <?php //Program to check and print whether a given number is even or odd. $n=10; if ($n%2==0) echo "Given number is even"; else echo "Given number is odd"; ?> </body> </html> Running the program: http://localhost/evenodd.php
OUTPUT:
Given number is even Case 2: When number is input through the keyboard <?php //Program to check and print whether an entered number is even or odd. echo "Enter number"; $n=fgets (STDIN); if ($n%2==0) echo "Entered number is even"; else echo "Entered number is odd"; ?> Running the program: C:\XAMPP\PHP>php evenodd.php
OUTPUT
3 | Page
EXPERIMENT NO 3: AIM OF EXPERIMENT: Write a program to compute net amount from the given quantity purchased
and rate per quantity. Discount @10% is allowed if the quantity purchased exceeds 100.
OBJECTIVE :
illustrate use of fgets (STDIN) how to compile & run the code at command prompt (non-web)
SOURCE CODE:
<?php echo "Enter quantity purchased"; $quantity=fgets (STDIN); echo "Enter rate per item"; $rate=fgets (STDIN); if ($quantity>100) $discount=10; else $discount=0; $netamount= ($quantity*$rate)-($quantity*$rate*$discount/100); echo "Net payable amount is". $netamount; ?> Running the program: C:\XAMPP\PHP>php netamount.php
OUTPUT:
Enter quantity purchased 100 Enter rate per item 10 Net payable amount is 1000 Enter quantity purchased 101 Enter rate per item 10 Net payable amount is 909
4 | Page
EXPERIMENT NO 4: AIM OF EXPERIMENT: Write a program to find largest among three numbers using ternary operator. OBJECTIVE:
Illustrate use of ternary operator
For running the program with the url the file must be placed in htdocs folder and the following url can be typed in the web browser. http://localhost/largest.php where largest.php is the name of the php file.
SOURCE CODE:
<html> <body> <?php $a=20; $b=30; $c=25; $large= ($a>$b)? (($a>$c)? $a: $c) :(( $b>$c)? $b: $c); echo "largest number is. $large; ?> </body> </html>
OUTPUT:
Largest number is 30
5 | Page
EXPERIMENT NO 5: AIM OF EXPERIMENT: Write a program to print sum of digits of a given number. (using while loop) OBJECTIVE :
Illustrate use of While loop
while loops are the simplest type of loop in PHP. They behave just like their C counterparts. The basic form of a while statement is: while (expr) statement The meaning of a while statement is simple. It tells PHP to execute the nested statement(s) repeatedly, as long as the while expression evaluates to TRUE. The value of the expression is checked each time at the beginning of the loop, so even if this value changes during the execution of the nested statement(s), execution will not stop until the end of the iteration (each time PHP runs the statements in the loop is one iteration). Sometimes, if the while expression evaluates to FALSE from the very beginning, the nested statement(s) won't even be run once. Like with the if statement, you can group multiple statements within the same while loop by surrounding a group of statements with curly braces, or by using the alternate syntax: while (expr): statement ... endwhile; The following examples are identical, and both print the numbers 1 through 10: <?php /* example 2 */ /* example 1 */ $i = 1; $i = 1; while ($i <= 10): while ($i <= 10) { echo $i; echo $i++; /* the $i++; printed value would be endwhile; $i ?> before the increment (postincrement) */ }
6 | Page
SOURCE CODE:
<?php echo "Enter number"; $a=fgets (STDIN); $sum=0; while ($a>0) { $r=$a%10; $sum=$sum+$r; $a=$a/10; } echo "Sum of the digits is. sum; ?>
OUTPUT:
Enter number 584 Sum of the digits is 17 Enter number 5 Sum of the digits is 5
7 | Page
EXPERIMENT NO 6: AIM OF EXPERIMENT: Write a program to print Fibonacci series upto a given number. OBJECTIVE:
Illustrate the use of for loop, and check the ability to apply the things learnt in last class/lab
In mathematics, the Fibonacci numbers or Fibonacci series or Fibonacci sequence are the numbers in the following integer sequence: 0 1 1 2 3 5 8 13 21 By definition, the first two numbers in the Fibonacci sequence are 0 and 1, and each subsequent number is the sum of the previous two. In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation F_n = F_{n-1} + F_{n-2}, with seed values[3] F_0 = 0, F_1 = 1. The Fibonacci sequence is named after Leonardo of Pisa, who was known as Fibonacci.
SOURCE CODE:
<?php echo "Enter number of terms you want to print the Fibonacci series"; $num=fgets (STDIN); $a=0; $b=1; if ($num<0) echo "Series not possible"; else if ($num==1) echo $a; else if ($num==2) echo $a."\n".$b; else { echo $a."\n". $b; for ($i=3; $i<=$num; $i=$i+1) { $c=$a+$b; echo "\n". $c; $a=$b; $b=$c; } } ?>
8 | Page
OUTPUT:
Enter number of terms you want to print the Fibonacci series 2 0 1 Enter number of terms you want to print the Fibonacci series 6 0 1 1 2 3
9 | Page
EXPERIMENT NO 7: AIM OF EXPERIMENT: Write a program to enter numbers till the user wants. At the end it should
display the count of positive, negative and zeros entered. (Using do-while loop)
OBJECTIVE:
Illustrate the use of Command line arguments Count function Do while loop
count() function counts elements in an array. $argv is a predefined array that stores the command line arguments. do-while loops are very similar to while loops, except the truth expression is checked at the end of each iteration instead of in the beginning. The main difference from regular while loops is that the first iteration of a do-while loop is guaranteed to run (the truth expression is only checked at the end of the iteration), whereas it may not necessarily run with a regular while loop (the truth expression is checked at the beginning of each iteration, if it evaluates to FALSE right from the beginning, the loop execution would end immediately). There is just one syntax for do-while loops: <?php $i = 0; do { echo $i; } while ($i > 0); ?> The above loop would run one time exactly, since after the first iteration, when truth expression is checked, it evaluates to FALSE ($i is not bigger than 0) and the loop execution ends.
SOURCE CODE:
<?php $i= count($argv); $p=0;$n=0;$z=0; for($j=1;$j<$i;$j++) { if($argv[$j]>0) $p++; else if ($argv[$j]==0) $z++; else $n++; } echo "Positive nos=".$p; echo "Negative nos=".$n; echo "Zeros =".$z; ?>
OUTPUT:
10 | P a g e
EXPERIMENT NO 8: AIM OF EXPERIMENT: Write a function countWords ($str) that takes any string of characters and
finds theNumber of times each word occurs. You should ignore the distinction between capital and lowercase letters. OBJECTIVE: Illustrate how to write functions in php and use of explode function.
Example A simple function that writes my name when it is called: <html> <body> <?php function writeName() { echo "Kai Jim Refsnes"; } echo "My name is "; writeName(); ?> </body> </html> Output: My name is Kai Jim Refsnes To add more functionality to a function, we can add parameters. A parameter is just like a variable. Parameters are specified after the function name, inside the parentheses. Example 1 The following example will write different first names, but equal last name: <html> <body> <?php function writeName($fname) {
11 | P a g e
echo $fname . " Refsnes.<br>"; } echo "My name is "; writeName("Kai Jim"); echo "My sister's name is "; writeName("Hege"); echo "My brother's name is "; writeName("Stale"); ?> </body> </html> Output: My name is Kai Jim Refsnes. My sister's name is Hege Refsnes. My brother's name is Stale Refsnes. Example 2 The following function has two parameters: <html> <body> <?php function writeName($fname,$punctuation) { echo $fname . " Refsnes" . $punctuation . "<br>"; } echo "My name is "; writeName("Kai Jim","."); echo "My sister's name is "; writeName("Hege","!"); echo "My brother's name is "; writeName("Stle","?"); ?> </body> </html> Output: My name is Kai Jim Refsnes. My sister's name is Hege Refsnes! My brother's name is Stle Refsnes?
12 | P a g e
SOURCE CODE
<?php function countStr($string,$substring) { $cArr = explode($substring,$string); $substring_count = count($cArr) - 1; echo $substring_count; } $string = 'when the men get the hen'; $substring = 'he'; Countstr($string,$substring); ?> OUTPUT: 4
13 | P a g e
EXPERIMENT NO 9: AIM OF EXPERIMENT: Create a form with one text field and submit buttons for string length, string
reverse and uppercase, lowercase, string replace. Display the result accordingly.
OBJECTIVE:
Illustrate the use of basic string functions like strlen, strtoupper, strtolower and strrev. form tag in html use of $_GET variable THEORY (IF ANY): int strlen ( string $string ) Returns the length of the given string string strtoupper ( string $string ) Returns string with all alphabetic characters converted to uppercase. string strtolower ( string $str ) Returns string with all alphabetic characters converted to lowercase. string strrev ( string $string ) Returns string, reversed. Form tag The <form> tag tells the browser where the form starts and ends. You can add all kinds of HTML tags between the <form> and </form> tags. Look at this example: <html> <head> <title>My Page</title> </head> <body> <!-- Here goes HTML --> <form> <!-- Here goes form fields and HTML --> </form> <!-- Here goes HTML --> </body> </html>
14 | P a g e
In the description of the script you are using it will be made clear whether the scripts should be addressed using one method or the other. Below is an example of a typical form tag, with both action and method specified. <html> <head> <title>My Page</title> </head> <body> <!-- Here goes HTML <form method="post" <!-- Here goes form </form> <!-- Here goes HTML </body> </html> $_GET variable The predefined $_GET variable is used to collect values in a form with method="get" Information sent from a form with the GET method is visible to everyone (it will be displayed in the browser's address bar) and has limits on the amount of information to send. Example <form action="welcome.php" method="get"> Name: <input type="text" name="fname"> Age: <input type="text" name="age"> <input type="submit"> </form> When the user clicks the "Submit" button, the URL sent to the server could look something like this: http://localhost/welcome.php?fname=Peter&age=37 The "welcome.php" file can now use the $_GET variable to collect form data (the names of the form fields will automatically be the keys in the $_GET array): Welcome <?php echo $_GET["fname"]; ?>.<br> You are <?php echo $_GET["age"]; ?> years old!
15 | P a g e
SOURCE CODE:
Html file source code <html> <body> <form method=get action="str.php"> Please enter the string <br> <input type=text name="t1"><br> <input type=submit> </form> </body> </html> Str.php file source code <?php $str=$_GET["t1"]; echo "string lenth is ".strlen($str); echo "<br>"; echo "string upper ".strtoupper($str);echo "<br>"; echo "string lower ".strtolower($str);echo "<br>"; echo "string reverse ".strrev($str); ?>
OUTPUT:
If input is Nihar String length is 5 String upper NIHAR String lower Nihar String reverse rahiN
16 | P a g e
EXPERIMENT NO 10: AIM OF EXPERIMENT: Write a Menu-Driven program to implement a calculator which performs
only addition, subtraction, multiplication and division. The operation should happen based on the user choice. (use switch case)
OBJECTIVE:
17 | P a g e
SOURCE CODE
<?php $ch=0; $i=0; $j=0; do { printf("\nPlease enter your choice\n"); printf("1:Multiply\n"); printf("2:Divide\n"); printf("3:Add\n"); printf("4:Substract\n"); printf("5.exit"); $ch=fgets(STDIN); switch($ch) {case 1; printf("Please enter two nos\n"); $i=fgets(STDIN); $j=fgets(STDIN); echo "Result is"; echo ($i*$j); break; case 2; printf("Please enter two nos\n"); $i=fgets(STDIN); $j=fgets(STDIN); echo "Result is"; echo ($i/$j); break; case 3; printf("Please enter two nos\n"); $i=fgets(STDIN); $j=fgets(STDIN); echo "Result is"; echo ($i+$j); break; case 4; printf("Please enter two nos\n"); $i=fgets(STDIN); $j=fgets(STDIN); echo "Result is"; echo ($i-$j); break; case 5; printf("Exiting\n"); break; default: echo ("Invalid Choice"); } }while($ch!=5); ?>
18 | P a g e
OUTPUT:
php calc.php Please enter your choice 1:Multiply 2:Divide 3:Add 4:Substract 5.exit4 Please enter two nos 3 4 Result is-1 Please enter your choice 1:Multiply 2:Divide 3:Add 4:Substract 5.exit5 Exiting
19 | P a g e
EXPERIMENT NO: 11 AIM OF THE EXPERIMENT: Write a function to swap two string values using call by value and call by
references.
OBJECTIVE: Illustrate the difference between call by value and call by reference THEORY (IF ANY):
There is no reference sign on a function call - only on function definitions. Function definitions alone are enough to correctly pass the argument by reference. <?php function foo(&$var) { $var++; } $a=5; foo($a); // $a is 6 here ?> SOURCE CODE: //Pass by value <?php $str1="Sahil"; $str2="Raheja"; echo "Swapping of two strings using Call by value"; echo "Before swapping strings are<br>"."String 1 = ". $str1."<br>String 2 = ". $str2."<br>"; swap ($str1, $str2); echo "Back from function :< br>"; echo "After swapping strings are<br>"."String 1 = ". $str1. "<br>String 2 = ". $str2; function swap ($x, $y) { $temp=$x; $x=$y; $y=$temp; echo "In function :<br>"; echo "After swapping strings are<br>String 1 = ".$x."<br>String 2 = ".$y."<br>"; } ?>
Run the program with url localhost/swap.php OUTPUT: //Pass by value Swapping of two strings using Call by value Before swapping strings are String 1 = Sahil String 2 = Raheja
20 | P a g e
In function: After swapping strings are String 1 = Raheja String 2 = Sahil Back from function: After swapping strings are String 1 = Sahil String 2 = Raheja
SOURCE CODE:
/Call by reference //Pass by reference <?php $str1="Sahil"; $str2="Raheja"; echo "<br>Swapping of two strings using Call by reference<br>"; echo "Before swapping strings are<br>"."String 1 = ". $str1."<br>String 2 = ".$str2."<br>"; swap ($str1,$str2); echo "Back from function:<br>"; echo "After swapping strings are<br>"."String 1 = ".$str1."<br>String 2 = ".$str2; function swap(&$x,&$y) { $temp=$x; $x=$y; $y=$temp; echo "In function:<br>"; echo "After swapping strings are<br>String 1 = ".$x."<br>String 2 = ".$y."<br>"; } ?> Run the program with url localhost/swap1.php OUTPUT: //Pass by reference Swapping of two strings using Call by reference Before swapping strings are String 1 = Sahil String 2 = Raheja In function: After swapping strings are String 1 = Raheja String 2 = Sahil Back from function: After swapping strings are String 1 = Raheja String 2 = Sahil
21 | P a g e
EXPERIMENT NO: 12 AIM OF THE EXPERIMENT: Write a program that will accept an array of integers as input, and
output an array where for each item in the source array, the new array will perform the following operations: For even numbers divide by 2 For odd numbers multiply by 3
OBJECTIVE:
SOURCE CODE:
<?php $numbers=array(10,20,5,16,38,97,23,11,10,32,35,453,21,436,865); $count1=count ($numbers); for ($i=0; $i<$count1; $i=$i+1) { if ($numbers [$i] %2==0) $numbers [$i] =$numbers [$i]/2; else if ($numbers [$i] %3==0) $numbers [$i] =$numbers[$i]*3; } echo "After operation array values are <br>"; foreach ($numbers as $value) echo $value."<br>"; ?>
OUTPUT:
Output: After operation array values are 5 10 15 8 19 291 69 33 5 16 105 1359 63 218 2595
22 | P a g e
EXPERIMENT NO: 13 AIM OF THE EXPERIMENT: Create an associative array using the countries as keys, the cities as
values and transform it into 2-dimensional array and display the data as a table. OBJECTIVE: Illustrate how to use associative arrays in PHP. THEORY (IF ANY): An associative array can be created using the array() language construct. It takes any number of comma-separated key => value pairs as arguments. array( key => value, key2 => value2, key3 => value3, ... ) The comma after the last array element is optional and can be omitted. This is usually done for single-line arrays, i.e. array(1, 2) is preferred over array(1, 2, ). For multi-line arrays on the other hand the trailing comma is commonly used, as it allows easier addition of new elements at the end.
SOURCE CODE:
<html> <body> <?php $a_array=array("India"=>"NewDelhi","Afghanistan"=>"Kabul","Australia"=>"Canber ra","Bangladesh"=>"Dhaka","Brazil"=>"Brasilia","Canada"=>"Ottawa","China"=>"Be ijing","France"=>"Paris","Japan"=>"Tokyo","Thailand"=>"Bangkok"); $j=0; foreach ($a_array as $x=>$x_value) { $newarray[0][$j]=$x; $newarray[1][$j]=$x_value; $j=$j+1; } echo "<table border=1>"; echo "<tr><th>Country</th><th>Capital</th></tr>"; for($k=0;$k<$j;$k++) {echo "<tr><td>".$newarray[0][$k]."</td>"; echo "<td>".$newarray[1][$k]."</td></tr>"; } echo "</table>"; ?> </body> </html>
23 | P a g e
OUTPUT:
24 | P a g e
EXPERIMENT NO: 14 AIM OF THE EXPERIMENT: Given two strings A and B, how would you find out if the characters in B
were a subset of the characters in A?
25 | P a g e
EXPERIMENT NO: 15 AIM OF THE EXPERIMENT: Write a program that creates a file and writes contents to it and display
it. Then append some data to it.
'x+' 'c'
26 | P a g e
'c+'
Open the file for reading and writing; otherwise it has the same behavior as 'c'.
Append to a file If we want to add on to a file we need to open it up in append mode. The code below does just that. $myFile = "testFile.txt"; $fh = fopen($myFile, 'a'); If we were to write to the file it would begin writing data at the end of the file.
SOURCE CODE:
<?php $my_file = 'nihar.txt'; $handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file); echo "Please enter any message to be stored in the file\n"; $data =fgets(STDIN); fwrite($handle, $data); /*fwrite($handle, $new_data);*/ echo "What you entered is \n"; $data = fread($handle,filesize($my_file)); echo file_get_contents($my_file); fclose($handle); $handle = fopen($my_file, 'a') or die('Cannot open file: '.$my_file); echo "Please enter any message to be appended in the file\n"; $data =fgets(STDIN); fwrite($handle, $data); echo "What you entered is \n"; $data = fread($handle,filesize($my_file)); echo file_get_contents($my_file); fclose($handle); ?> OUTPUT:
27 | P a g e
EXPERIMENT NO: 16 AIM OF THE EXPERIMENT: Create a login form with two text fields called login and password.
When user enters Galgotias as a user name and university as a password it should be redirected to a Welcome.HTML page or to Sorry.HTML in case of wrong username/password.
28 | P a g e
mysql_select_db("abc",$con); $result=mysql_query("select * from login1"); while($row=mysql_fetch_array($result)) { if($row["username"]==$f_usr && $row["password"]==$f_pswd) { echo"Welcome : $f_usr"; } else{ echo"Sorry $f_usr, your user id or password is not correct"; include("login1.html"); } } ?> </h1> </center> </body> </html>
OUTPUT:
29 | P a g e
EXPERIMENT NO: 17 AIM OF THE EXPERIMENT: Write a PHP program using Java Script to convert the decimal number to
its binary equivalent. You must use a form to accept the number from the user.
OUTPUT:
30 | P a g e
31 | P a g e
EXPERIMENT NO: 18 AIM OF THE EXPERIMENT: Write a PHP code that define class Student with attributes RollNo, Name,
Branch, and Year, create 3 instances of it, sets the values of each instance appropriately and print the values of all attributes.
OBJECTIVE: Illustrate object oriented programming through PHP. THEORY (IF ANY): SOURCE CODE:
<?php class Employee {public $RollNo; public $Branch; public $Name; public $Year; function set($RollNo,$Branch, $Name, $Year) {$this->RollNo=$RollNo; $this->Branch=$Branch; $this->Name=$Name; $this->Year=$Year; } function getRollNo() {return $this->RollNo;} function getBranch() {return $this->Branch;} function getname() {return $this->Name;} function getYear() {return $this->Year;} function __construct() {} function __destruct() {} } $obj[1]= new Employee(); $obj[2]= new Employee(); $obj[3]= new Employee(); $obj[1]->set(1001,"CSE","amit",2012); $obj[2]->set(1002,"CSE","prashant",2011); $obj[3]->set(1003,"ECE","sachin",2012); for($j=1;$j<4;$j++) { echo $obj[$j]->getRollNo(); echo $obj[$j]->getBranch(); echo $obj[$j]->getName(); echo $obj[$j]->getYear()."\n"; } ?>
32 | P a g e
OUTPUT:
33 | P a g e
EXPERIMENT NO: 19 AIM OF THE EXPERIMENT: Write a function calculateAverage () which takes four int arguments
which are marks for four courses in the semester and returns their average as a float. The calculateAverage () function should take only valid range for marks which is between 0 - 100. If the marks are out of range is should throw an OutOfRangeException and handles it.
34 | P a g e
EXPERIMENT NO: 20 AIM OF THE EXPERIMENT: Create a form with a text box asking to enter your favorite city with a
submit button when the user enters the city and clicks the submits button another php page should be opened displaying Welcome to the city.
35 | P a g e