Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/09/2004, 17:48
Avatar de xyyy7
xyyy7
 
Fecha de Ingreso: enero-2004
Ubicación: Maracay.-
Mensajes: 637
Antigüedad: 20 años, 3 meses
Puntos: 5
Re: espero te sirva...

loadVariablesNum("mailform.php", 0, "POST");

Y LISTO!!!! CLARO DEBES DE ENVIAR LOS VALORES DESDE TU FORMULARIO FLASH A UN SCRIPT SENCILLO DE PHP PARA RECIVIR VARIABLES Y MANDARLAS POR EMAIL.- CUALQUIERAS QUE USES EN UNA WEB PHP TE SERVIRA.-

O PODRIAS USAR ESTE:



mailform.php
Código PHP:
<?php 
$TextVariable 
'&results='
$response 'Data Sent. Thank You..'
echo 
$TextVariable
echo 
$response
/* recipients */ 
$recipient .= "" 
/* subject */ 
$subject "Your Automail"
/* message */ 
$message .= "Name: $name 
Email: $email 

Comments: $comments\n"

/* additional header pieces for errors, From cc's, bcc's, etc */ 
$headers .= "From: $name <$email>\n"


/* and now mail it */ 
mail($recipient$subject$message$headers); 
?>
see you................!!!!