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

8 lines
266 B
PHP
Raw Normal View History

<?php include "inc/debut.php";
head("liste_des_nombres.php"); ?>
2018-07-07 11:19:15 +02:00
<?php $nombre_de_lignes = 1;
while ($nombre_de_lignes <= 1000000) { ?>
<span><?php echo $nombre_de_lignes ?><br></span>
2018-07-07 11:19:15 +02:00
<?php $nombre_de_lignes++; } ?>
<?php include "inc/footer.php"; ?>