> Hi all.
>
[quoted text clipped - 9 lines]
>
> Rob A (bobby)
I'm working on this too - my hosting service is 1and1 - and I've set up the
my sql database .... but what do you do AFTER you set up the database - do I
need to go in to the phpMyAdmin to do something else so that the form in
flash (using a template from monstertemplates) works?the script I'm using on
the 'button' that says 'send' in the form in the flash is:
on (rollOver) {
gotoAndPlay("t1");
}
on (releaseOutside, rollOut) {
gotoAndPlay("t2");
}
on (release) {
_parent.text1 = "Name:";
_parent.text2 = "E-mail:";
_parent.text3 = "Message:";
}
on (release) {
}
on (release) {
loadVariablesNum = "mail.php\", 0, \"POST";
}
then - I made a mail.php in my website program (fp expression) that says:
<?php mail("info@jbtechllc.com", $_GET["subject"], $_GET["message"], "From:
PHPMailerReply-To: $_GET["from"]X-Mailer: PHP/" . phpversion()); ?>
what am I doing wrong?
thanks
Pam
> hi bobby,
>
[quoted text clipped - 22 lines]
>>
>> Rob A (bobby)