Parent Directory
|
Revision Log
|
Revision Graph
Initial Release for Drupal 5.0
| 1 | <?php |
| 2 | echo '<div style="font-size: 125%;">'; |
| 3 | $addr = $_SERVER['REMOTE_ADDR']; |
| 4 | $country = ip2cc_get_country($addr); |
| 5 | echo "<p>I'm sorry but your IP address ($addr) is registered to "; |
| 6 | if ($country) { echo $country->country_name; } |
| 7 | else { echo "an unknown country"; } |
| 8 | echo ".</p><p>The owners of this site prefer to restrict membership to the United States.</p>"; |
| 9 | echo '<p>If you are an American temporarily using a foreign internet connection and wish to register, please <a href="/contact">contact us</a> and explain your situation. We will get back to you as soon as we can.</p>'; |
| 10 | echo '</div>'; |
| 11 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |