php - Make array of all GET-variables -


I am trying to create an array from all GET-variables that are near PHP scripts. So far, I have not found any way to do this.

Is this possible?

It is already by default:

  print_r ( $ _ GET); // print_r for all GET variables ($ _ POST); //  

for all post variables

Comments