16 lines
345 B
PHP
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>
|