WebbServerProg/www/public/Moment-2/Upg2/räknare.php
2024-08-26 10:40:59 +02:00

16 lines
345 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
for($räknare = 1.0; $räknare < 5; $räknare+=0.1) {
echo($räknare. " ");
}
include("../../footer.html");
?>
</body>
</html>