modif towns

This commit is contained in:
2023-04-29 06:32:56 +00:00
parent 53589f7d19
commit b5cd6c8395
143 changed files with 12057 additions and 25 deletions

View 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>';
?>