Array php boucle infifnie
Résolu/Fermé
maher*91
Messages postés
31
Date d'inscription
vendredi 20 mars 2009
Statut
Membre
Dernière intervention
24 mars 2010
-
21 mars 2009 à 14:17
maher*91 Messages postés 31 Date d'inscription vendredi 20 mars 2009 Statut Membre Dernière intervention 24 mars 2010 - 21 mars 2009 à 15:07
maher*91 Messages postés 31 Date d'inscription vendredi 20 mars 2009 Statut Membre Dernière intervention 24 mars 2010 - 21 mars 2009 à 15:07
A voir également:
- Array php boucle infifnie
- Easy php - Télécharger - Divers Web & Internet
- Mon pc s'allume et s'éteint en boucle ✓ - Forum Matériel & Système
- Php natif - Forum PHP
- Xiaomi s'éteint tout seul et se rallume en boucle - Forum Xiaomi
1 réponse
maher*91
Messages postés
31
Date d'inscription
vendredi 20 mars 2009
Statut
Membre
Dernière intervention
24 mars 2010
4
21 mars 2009 à 15:07
21 mars 2009 à 15:07
ouff en fin j'y arrive! voila ma solution pour ceux qu'y sont besoin:
<html>
<head>
<style> h1 { color:blue;} h2 {color:green;}
</style>
</head>
<body>
<?php
$file='maher.txt';
$contenus=file_get_contents($file);
$array=explode(';',$contenus);
$nbre=count($array);
for ($i=1 ; $i<=$nbre; $i++)
{
if ($i%2==0)
{
echo '<h1>'."nbre paire : ".$array[$i].'</h1>';
}
else echo '<h2>'."nbre impaire : ".$array[$i].'</h2>';
}
?>
</body>
</html>
<html>
<head>
<style> h1 { color:blue;} h2 {color:green;}
</style>
</head>
<body>
<?php
$file='maher.txt';
$contenus=file_get_contents($file);
$array=explode(';',$contenus);
$nbre=count($array);
for ($i=1 ; $i<=$nbre; $i++)
{
if ($i%2==0)
{
echo '<h1>'."nbre paire : ".$array[$i].'</h1>';
}
else echo '<h2>'."nbre impaire : ".$array[$i].'</h2>';
}
?>
</body>
</html>