PHP Programs Examples With Output PDF
PHP Programs Examples With Output PDF
PHP EXAMPLE
PDF
Created By:
?>
OUTPUT
2
Copyright pTutorial All Rights Reserved
3
Copyright pTutorial All Rights Reserved
</html>
OUTPUT
4
Copyright pTutorial All Rights Reserved
OUTPUT
2 3 4 5
4 6 8 10
6 9 12 15
8 12 16 20
10 15 20 25
12 18 24 30
14 21 28 35
16 24 32 40
18 27 36 45
20 30 40 50
5
Copyright pTutorial All Rights Reserved
OUTPUT
795
6
Copyright pTutorial All Rights Reserved
OUTPUT
no output available
7
Copyright pTutorial All Rights Reserved
<table >
<tr>
<td>Id:<br><input type="text" name="roll" value="<?php if(isset($sub)){echo
$roll;} ?>" placeholder="pT-14520">
</tr>
<tr>
<td>First Name:<input type="text" name="name"
placeholder="First Name" ></td>
maxlength="20"
</tr>
<tr>
<td>Last Name:<input type="text" name="lname" maxlength="20"
placeholder="Last Name"></td>
</tr>
<tr>
<td>Date of Birth:<input type="Date" name="dof"
placeholder="28/12/1993"></td>
maxlength="20"
</tr>
<tr>
<td>Qualification:<input type="text" name="qua"
placeholder="Qualification"></td>
maxlength="20"
8
Copyright pTutorial All Rights Reserved
autocomplete="on" ></td>
</tr>
<tr>
<td>Contact:<input type="text" name="contact"
placeholder="1234567890"></td>
maxlength="10"
</tr>
<tr>
<td>Address:<textarea rows="7" cols"3" name="a"></textarea></td>
</tr>
<tr>
<td><input type="submit" value="PoSt" name="sub"><input type="reset"
value="reset"></td>
</tr>
</table>
</form>
</body>
</html>
9
Copyright pTutorial All Rights Reserved
background: #EDEDED;
border:2px solid ;
width:200px;
border-spacing:10px;
margin-left:auto;
margin-right:auto;
}
</style>
PHP
<?php
$a1=mysql_connect("localhost", "root", "")or die("connection fail");
$b=mysql_select_db("test", $a1);
if(isset($_POST['sub']))
{
error_reporting(0);
$roll=$_POST['roll'];
$name=$_POST['name'];
$lname=$_POST['lname'];
$dob=$_POST['dof'];
10
Copyright pTutorial All Rights Reserved
?>
<?php
if(isset($_POST['sub']))
11
Copyright pTutorial All Rights Reserved
12
Copyright pTutorial All Rights Reserved
13
Copyright pTutorial All Rights Reserved
OUTPUT
14
Copyright pTutorial All Rights Reserved
If you ever think a PHP example is not explained clearly or think we should add a
specific PHP example suggest me at [email protected]. We will add PHP example
as soon as possible for better experience.
15
Copyright pTutorial All Rights Reserved