IP-PBX management: http://www.easypbx.it
Old account: 2126 messages
Oldest account: 3559 messages
si ok intanto potrei utilizzare questa:
l'ho testata con un file di esempio ed ho ottenuto questo risultato:
se stampo:codice:Array ( [_GET] => Array ( [id] => 1 ) [_POST] => Array ( ) [_COOKIE] => Array ( ) [_FILES] => Array ( ) [id] => 1 [variabile1] => var1 [variabile2] => var2 )
vedo correttamente solo le variabili $_GETCodice PHP:
<?php
print_r($arr['_GET]');?>
ma se stampo
ottengo: Array()Codice PHP:
<?php
print_r($arr['_FILES]');?>
cosa sbaglio ?
aquatimer2000