This repository has been archived on 2023-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
web/liste_des_nombres.php

16 lines
519 B
PHP
Raw Normal View History

2018-07-07 11:19:15 +02:00
<?php session_start(); ?>
<!DOCTYPE HTML>
<html>
<?php // Appelle le <head>
include "inc/head.php";
head("Liste des nombres de 1 à 1 million | Anternet.pw", "Un page recensant, ligne par ligne, le premier million des nombres entier"); ?>
<body class="<?php include "inc/couleur.php"; ?>" lang="fr">
<main class="centre">
<?php $nombre_de_lignes = 1;
while ($nombre_de_lignes <= 1000000) { ?>
<span><?php echo $nombre_de_lignes ?><br/></span>
<?php $nombre_de_lignes++; } ?>
</main>
</body>
</html>