Created
June 20, 2014 19:21
-
-
Save andy-williams/b01b5d8ab97b1b1c3139 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
<?php | |
echo "query data:<br>"; | |
print_r($_GET['array']); | |
echo "<br>"; | |
echo "query keys:<br>"; | |
print_r(array_keys($_GET['array'])); | |
?> |
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
go to php page with query string of ?array[2]=11&array[4]=11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment