PDA

View Full Version : PHP/Flash mail form: sending 2 different e-mail messages


proust79
09-20-2002, 08:50 PM
Hi! I have some problems with PHP / Flash e-mail forms.

I created a registration form flash file. When you register, the flash files should send two different e-mail messages, to the user (itaregutente) and to me (regenrico).

on (release) {
if (nome.length+0 == 0) {
errore.gotoAndStop(2);
} else if (email.length+0 == 0) {
errore.gotoAndStop(2);
} else {
loadVariablesNum ("itaregutente.php", 0, "POST");
loadVariablesNum ("regenrico.php", 0, "POST");
nome2 = nome;
gotoAndStop (3);
}
}

In fact, it doesn't. It manages to send itaregutente and regenrico separately, but not together. The script above just doesn't send anything. Is it a limit of Flash 5 or is there a mistake in my script? What am I supposed to do to make it work?

:confused:

Thanks in advance for your help,

Enrico
from Italy

zoomfreddy
09-23-2002, 08:14 AM
mmmm, make the php do the sending for the two mails...

:cool: