bonjour,
je viens demander de l aide pour un code php qui me renvoie sur mon navigateur :
Notice: Undefined offset: 1 in /home/triskellws/www/index.php on line 87
Notice: Undefined offset: 7 in /home/triskellws/www/index.php on line 87
Notice: Undefined offset: 8 in /home/triskellws/www/index.php on line 87
et voici le code en question (qui fonctionne pourtant):
<?php
//Ouverture du fichier CSV
$fichier = 'inscrits.csv';
//Lecture du fichier CSV
if (($handle = fopen($fichier, "rb")) !== FALSE) {
// recuperation des lignes dans un array
while (($ligne = fgetcsv($handle, 1024, ";")) !== FALSE) {
$lignes[] = $ligne;
}
// tri du plus petit au plus grand
sort($lignes);
// affichage
foreach ($lignes as $data) {
// titre
echo '<a><h5>'.$data[0].' '.$data[1].' '.$data[7].' '.$data[8].'</h5></a>'."\n";
}
fclose($handle);
}
?>
je viens demander de l aide pour un code php qui me renvoie sur mon navigateur :
Notice: Undefined offset: 1 in /home/triskellws/www/index.php on line 87
Notice: Undefined offset: 7 in /home/triskellws/www/index.php on line 87
Notice: Undefined offset: 8 in /home/triskellws/www/index.php on line 87
et voici le code en question (qui fonctionne pourtant):
<?php
//Ouverture du fichier CSV
$fichier = 'inscrits.csv';
//Lecture du fichier CSV
if (($handle = fopen($fichier, "rb")) !== FALSE) {
// recuperation des lignes dans un array
while (($ligne = fgetcsv($handle, 1024, ";")) !== FALSE) {
$lignes[] = $ligne;
}
// tri du plus petit au plus grand
sort($lignes);
// affichage
foreach ($lignes as $data) {
// titre
echo '<a><h5>'.$data[0].' '.$data[1].' '.$data[7].' '.$data[8].'</h5></a>'."\n";
}
fclose($handle);
}
?>