Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/03/2009, 10:20
Avatar de xempro
xempro
 
Fecha de Ingreso: marzo-2007
Ubicación: Chile
Mensajes: 222
Antigüedad: 17 años, 1 mes
Puntos: 6
Respuesta: Cojer todas las variables y enviar por mail

Espero esto te sirva...

Código PHP:
<?php
$total 
count($_POST);
$tag array_keys($_POST);
$valor array_values($_POST);
for(
$i=0;$i<$total;$i++){ 
    echo 
$tag[$i].": ".$valor[$i]."<br/>"
}
?>