Lid |
|
EDIT: Opgelost, heb de volgende code gemaakt:
<?php
// bestand
$file = 'csv/mijnleads.csv';
// bestaat het bestand
if(!file_exists($file))
{
echo 'Bestand bestaat niet';
exit;
}
// is het bestand leesbaar
if(!is_readable($file))
{
echo 'Bestand is niet leesbaar';
exit;
}
// nieuwe array maken om het CVS in te importeren
$data = array();
// delimiter zetten
$delimiter = ';';
// bestand openen
$open = fopen($file, 'r');
// loop maken om alles te importeren
while($row = fgetcsv($open, 1000, $delimiter))
{
$data[] = $row;
}
foreach($data as $nr => $i)
{
echo '<p>'.$i[0].'</p>';
}
?>
<?php // bestand $file = 'csv/mijnleads.csv'; // bestaat het bestand { echo 'Bestand bestaat niet'; } // is het bestand leesbaar { echo 'Bestand is niet leesbaar'; } // nieuwe array maken om het CVS in te importeren // delimiter zetten $delimiter = ';'; // bestand openen $open = fopen($file, 'r'); // loop maken om alles te importeren while($row = fgetcsv($open, 1000, $delimiter)) { $data[] = $row; } foreach($data as $nr => $i) { } ?>
|