This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function get_client_ip() { | |
| $ipaddress = ''; | |
| if (isset($_SERVER['HTTP_CLIENT_IP'])) | |
| $ipaddress = $_SERVER['HTTP_CLIENT_IP']; | |
| else if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) | |
| $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR']; | |
| else if(isset($_SERVER['HTTP_X_FORWARDED'])) | |
| $ipaddress = $_SERVER['HTTP_X_FORWARDED']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>HTML marquee Tag</title> | |
| </head> | |
| <body> | |
| <marquee>This is basic example of marquee</marquee> | |
| <marquee behavior="alternate">The direction of text will be from bottom to top.</marquee> | |
| </body> | |
| </html> |