Translate

Thursday 10 October 2013

PHP Server Variable using foreach Condition

index.php:

<?PHP

foreach($_SERVER as $key_name => $key_value) {

print $key_name . " = " . $key_value . "<br>";

}

?>
 
In this coding foreach Condition is used to which Browser the user is to working and 
which remote address &IP address all information is to be display. 

No comments:

Post a Comment