Last active
March 4, 2021 13:06
-
-
Save michaelbeltran/669c522d2496fe6810ef to your computer and use it in GitHub Desktop.
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
var $_GET = new Array(); | |
function GET() { | |
var url = location.search.replace("?", "").split("&"); | |
for (var index = 0; index < url.length; index++) { | |
var value = url[index].split("="); | |
$_GET[value[0]] = value[1]; | |
} | |
} | |
GET(); |
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
$_GET['key_uri'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment