Not Working....
Posted: Sun Jun 11, 2006 7:54 am
The Code For Some Reson Dosent Work Why?
Thats the code i put in.
Code: Select all
<?php echo $_SERVER["REMOTE_ADDR"]; ?>
Premium hosting with SSD VPS, cPanel/WHM hosting and dedicated servers support and discussion forums. Get help from co-webmasters and professionals!
https://smokyhosts.com/forums/
Code: Select all
<?php echo $_SERVER["REMOTE_ADDR"]; ?>
Code: Select all
<?php
print "IP: ". $_SERVER['REMOTE_ADDR']."
"; ### IP ADDRESS ##
print "Browser:" . _SERVER["HTTP_USER_AGENT"]."
"; ## Browser
print "OS: ". _ENV["OS"]; ### OS
?>
Code: Select all
<?php
print "<pre>";
print_r($_SERVER);
print_r($_ENV);
print "</pre>";
?>