Created
November 2, 2017 12:48
-
-
Save saraclima/e075dde164b872d0be63d946d78732f8 to your computer and use it in GitHub Desktop.
xdebug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: romain | |
* Date: 22/02/16 | |
* Time: 10:13 | |
*/ | |
$students = [ | |
"Emmanuel" => 42, | |
"Thierry" => 51, | |
"Pascal" => 45, | |
"Eric" => 48, | |
"Nicolas" => 19 | |
]; | |
$ages = [42, 51, 45, 48, 19]; | |
for ($i=0; $i<=count($ages); $i++) { | |
$sum = array_sum($ages); | |
$average = $sum / count($ages); | |
} | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Compute average student age</title> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<th>Name</th> | |
<th>Age</th> | |
</tr> | |
<?php | |
foreach ($students as $key=>$value) | |
{ | |
echo "<tr>\n<td>"; | |
echo $key; | |
echo "</td>\n<td>"; | |
echo $value; | |
echo "</td>\n</tr>"; | |
} | |
?> | |
</table> | |
<p>Average age : <?php echo $average; ?></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment