ok, jayseemee, I couldn’t view your SWF file. It said that it was protected, so no luck there. If you could, please post the code you are using for your PHP file, and the code that you are using for your Flash file, and I’ll be able to debug it that way.
*Originally posted by jayemsee *
**thanx jubba! forgot that, in my mindless search for the answers, i totally forgot to say thanx for your time and patientce w/ me.
jayemsee **
you tha man? it works i may hafta tweak i think the way it comes out in the e-mail form itself, but all in all i’ll save it as is to refer back to! thanx again man!
@#&$^@)#$_@#$^* mine’s still not working … can you post the php code from the file … the whole thing jubba … b/c i don’t see a line like that in my code that i have
the forum changes my code … so i’ll post the php file
a little modification! lol this is what i have saved as “FORM.PHP” following the same tutorial (1st post)!
i added xtra $message fields to help break up the text the way i want it, you can re-arrange anyway you want, the only thing i found out is see
$message = "$Today
";
see how there’s no period before the “=” sign your very first line has no period, every other line under that has one!
$Today gets todays date and time, and that’s about it.
o the flash variables are as follows if your to lazy to skip back 2 pages (lol)
on (release) {
if (name eq "" or phone eq "" or email eq "" or comment eq "") {
stop ();
} else {
loadVariablesNum ("form.php", 0, "POST");
gotoAndStop (2);
}
}
*Originally posted by jayemsee *
**you tha man? it works i may hafta tweak i think the way it comes out in the e-mail form itself, but all in all i’ll save it as is to refer back to! thanx again man! **
I’m glad I could help If you ever need PHP help let me know. The more I help, the more I learn.
in my flash movie, can i have it call form.php and lets say response.php, but the response.php would take the e-mail he entered, and put it into the $to field and the $message could be like thanx for submitting to “blah” i will be in touch shortly etc.?
jayemsee
yes you can. in your flash movie under where
loadvariables (form.php, 0, POST) write
loadvariables (response.php, 0, POST) and instead of filling in your e-mail address put in $email or whatever your calling their email field (email, e-mail, e_mail) and in the $message = you can put somthing like
thanx $name for your submission to “_blank” i will contact you shortly
it sends the field names specified in the PHP but none of the values that have been entered for them
---------------------------edit---------------------------
i’ve now tried both scripts from you jubba and from you jayemsee … both to no avail. the PHP file is still only returning the information i put in the quote above
well that means that your PHP code is working, but for some reason its not recieving the variables, or the problem more likely lies on the Flash side… I’ll take a look…