Last active
February 10, 2024 14:43
-
-
Save binarymako/2ee854abad6b3acde174713b35b53803 to your computer and use it in GitHub Desktop.
Page View via HTTP Response Headers and Request Headers..
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 | |
| //header_request_get_variable = http_headers(); | |
| //hrgv | |
| $_hrgv = func(); | |
| $_uri = $_hrgv["Hostname"]; | |
| $_path = $_hrgv["Path"]; | |
| $_data = $_uri; | |
| //Save Data to Database as per Boot Load from CSS Files.. | |
| switch($_uri."/".$_path){ | |
| case("https://www.google.com/entrypoint"): | |
| database_push($_uri."/".$_path); | |
| break; | |
| default: | |
| //Continue later.. | |
| break; | |
| }// | |
| //Page View - Module.. | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment