Inclure plusieurs fichier dans un scripte

Author:


Download


<html>
<head>
<title>inclusion de Plusieurs Fichiers</title>
</head>
<body>
<?php
for ( $x = 1; $x<=5; $x++ )
{
   $fichiers = "page$x".".txt";
   include( "$fichiers" );
   print "<p/>";
}
?>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *


− one = 4