[insert_php]
echo ‘115-NEUILLAC’;
echo «
\n\n »;
$f = fopen(« http://www.ligue-moto-bretagne.com/commandes/115-neuillac.csv », « r »);
while (($line = fgetcsv($f)) !== false) {
$row = $line[0]; // We need to get the actual row (it is the first element in a 1-element array)
$cells = explode(« ; »,$row);
echo «
« ;
foreach ($cells as $cell) {
echo «
» . htmlspecialchars($cell) . « |
« ;
}
echo «
\n »;
}
fclose($f);
echo « \n
« ;
[/insert_php]