modif towns
This commit is contained in:
24
nationschainssave/tribes/smatchit/www/presentation/read.php
Normal file
24
nationschainssave/tribes/smatchit/www/presentation/read.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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>';
|
||||
?>
|
Reference in New Issue
Block a user