1
0
mirror of https://github.com/php/web-php.git synced 2026-03-29 01:32:15 +01:00
Files
archived-web-php/mirrors.php3
Rasmus Lerdorf 1cb421edf5 Ok, the bulk of the site has been changed over. Still a bit of clean-up
work to do.  And some of the links don't go anywhere.
1998-03-23 19:50:45 +00:00

25 lines
605 B
PHP

<?
require("shared.inc");
commonHeader("Mirrors Page");
?>
<FORM ACTION="redirect.php3" METHOD="POST">
<B>Pick a mirror site close to you:</B><BR>
<SELECT NAME="URL"><?
$mirror_sites=$MIRRORS;
reset($mirror_sites);
while ($site = key($mirror_sites)):
next($mirror_sites);
$country=$mirror_sites[$site][0];
$place=$mirror_sites[$site][1];
$type=$mirror_sites[$site][4];
if ($type==1):
echo "<OPTION VALUE=\"$site\">$place ($COUNTRIES[$country])\n";
endif;
endwhile;
?></SELECT>
<INPUT TYPE="image" SRC="/gifs/b-go.gif" ALIGN=absmiddle WIDTH=36 HEIGHT=21 BORDER=0><BR>
</FORM>
<?
commonFooter();
?>