apxtrib/nationschainssave/tribes/smatchit/www/presentation/read.php

24 lines
320 B
PHP
Raw Normal View History

2023-04-29 06:32:56 +00:00
<?php
print '<!DOCTYPE html>';
print '<html>';
$file = fopen('_emails.csv', 'r');
while(! feof($file))
{
$line = fgetcsv($file);
foreach ($line as $l)
{
print ' - ' . $l;
}
print '<br/>';
}
fclose($file);
print '</html>';
?>