Web Engineering Lab 12
Web Engineering Lab 12
Lab Task
Task 1:
<!DOCTYPE html>
<html>
<head>
<title>Task-3</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<?php
$month_temp = array(78, 60, 62, 68, 71, 68, 73, 85, 66, 64, 76, 63, 81, 76
, 73,
68, 72, 73, 75, 65, 74, 63, 67, 65, 64, 68, 73, 75, 79, 73);
$avg = array_sum($month_temp)/sizeof($month_temp);
sort($month_temp);
echo "Average Temperature: $avg <br>";
echo "List of seven lowest temperatures: ";
echo implode( ', ', array_slice( $month_temp, 0, 7));
echo "<br>List of seven largest temperatures: ";
echo implode(', ', array_slice($month_temp,-7,7));
?>
</body>
</html>
}
td{
padding: 5px;
}
</style>
</head>
<body>
<table>
<?php
for ($i=1; $i<=6; $i++){
echo "<tr>";
for ($x=1; $x<=5; $x++){
echo "<td>",$i,"*",$x,"=",$i*$x,"</td>";
}
?>
</table>
</body>
</html>
Task 3
<!DOCTYPE html>
}
echo "</tr>";
}