TY_BCS_PHP_SLIP 5_1



Slip no. 5. Write a PHP script to display following information using super global variable.
a) Client IP Address.
b) Browser detection/information.
C) To check whether the page is called from ‘https’ or ‘http’.



HTML file :
<?php
                 echo "Your IP Address Is : " . $_SERVER['REMOTE_ADDR'] . "<br>";
                 echo "Browser Detection / Information : " . $_SERVER['HTTP_USER_AGENT'] . "<br>";
                echo "You Came From A Page Called : " .$_SERVER['HTTP_REFERER']. "<br>";
?>

No comments:

Post a Comment

Note: only a member of this blog may post a comment.