Current File : //opt/RZphp72/includes/www/pear.php.net/public_html/mirrors.php
<?php
/*
   +----------------------------------------------------------------------+
   | PEAR Web site version 1.0                                            |
   +----------------------------------------------------------------------+
   | Copyright (c) 2001-2005 The PHP Group                                |
   +----------------------------------------------------------------------+
   | This source file is subject to version 2.02 of the PHP license,      |
   | that is bundled with this package in the file LICENSE, and is        |
   | available at through the world-wide-web at                           |
   | http://www.php.net/license/2_02.txt.                                 |
   | If you did not receive a copy of the PHP license and are unable to   |
   | obtain it through the world-wide-web, please send a note to          |
   | license@php.net so we can mail you a copy immediately.               |
   +----------------------------------------------------------------------+
   | Authors:                                                             |
   +----------------------------------------------------------------------+
   $Id$
*/

if (isset($country)) {
    header("Location: http://$country.pear.php.net/");
}
response_header("Mirrors Page");
require_once 'site.php';
?>

<h1>Mirror Sites</h1>

<p>
Here you can find more information about the mirrors
of pear.php.net. Pick a mirror site close to you, or visit
the provider's homepage:
</p>

<table border="0" cellpadding="2" cellspacing="1" width="100%" class="mirrors">
 <tr bgcolor="#cccccc">
  <th>Mirror Address</th>
  <th>Provider</th>
  <th>Country</th>
  <th>Type</th>
 </tr>
<?php
    $mprevious = 'aa';
    foreach ($MIRRORS as $murl => $mdata) {
        echo '<tr bgcolor="#e0e0e0"><td>', make_link($murl, $murl),
             '</td><td>', make_link($mdata[3], $mdata[1]), '</td>';
        echo '<td>';
        if ($mprevious != $mdata[0]) {
            echo $COUNTRIES[$mdata[0]];
        } else {
            echo "&nbsp;";
        }
        switch ($mdata[4]) {
            case 1 :
                echo '</td><td>Full';
                break;
            case 0 :
                echo '</td><td>REST/download';
                break;
            case 2 :
                echo '</td><td>Pending';
                break;
        }
        echo '</td></tr>';
        $mprevious = $mdata[0];
    }
?>
</table>

<?php
response_footer();
?>