Skip to content

Instantly share code, notes, and snippets.

@binarykore
Last active February 10, 2024 14:43
Show Gist options
  • Save binarykore/ab717e68c338826090c50fd03a7c30b8 to your computer and use it in GitHub Desktop.
Save binarykore/ab717e68c338826090c50fd03a7c30b8 to your computer and use it in GitHub Desktop.
Page View via HTTP Response Headers and Request Headers..
<?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