Ver Mensaje Individual
  #6 (permalink)  
Antiguo 09/06/2005, 14:50
Avatar de dwaks
dwaks
 
Fecha de Ingreso: agosto-2002
Ubicación: Panamá
Mensajes: 962
Antigüedad: 21 años, 8 meses
Puntos: 15
Información Prueba con esta función

Código PHP:
<?php
$variable 
POST_to_GET();
echo 
$variable;

function 
POST_to_GET(){
    foreach(
$_POST as $key=>$valor) {
        if(isset(
$temp)){
            
$temp $temp."&".$key."=".$valor;
        }
        else{
            
$temp "?".$key."=".$valor;    
        }
    }
    return 
$temp;
}
?>