- Home
- Categorie
- Coding e Sistemistica
- Coding
- tutte le variabili GET
-
tutte le variabili GET
Esiste un modo per richiamare tutte le varibili passate in get?
Tipo un array che contiene tutto ciò che arriva dall'url?Grazie
-
$_GET è l'array che le contiene tutte.
Prova a fare:
print_r($_GET);
Oppure:
foreach ($_GET as $chiave => $valore)
echo "Chiave $chiave - Valore $valore<br />\n";