Citation :
<?php
$nbCases = 0;
$i = 0;
$fichier = fopen("res/lun_host","r" );
while (fscanf($fichier, "%s %s", $lun, $host))
{
$tab_lun_host[$i][0] = $lun;
$tab_lun_host[$i][1] = $host;
echo "$tab_lun_host[$i][0] \t $tab_lun_host[$i][1] <br>";
$i++;
}
fclose($fichier);
?>
|