Ok, so that works for printing it out, how would I now take that info, and import it into the MySQL database?
<?
$row = 1;
$handle = fopen("/home/yellow1/public_html/database/admin/input/temp/SEIZURE.txt", "r");
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>\n";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "<br />\n";
}
}
fclose($handle);
?>