ok … i am gonna post this again.
all my site is SWF files. each button calls an external SWF and load it in the main SWF. i have all my files uploaded to Freewebs.
now, the contact button calls the “contact.swf” which has a mail form with a PHP file to load the variables. since Freewebs doesnt support PHP, i uploaded “contact.swf” and “form.php” to Lycos.co.uk (which supports php).
when clicking the contact button from freewebs, it calls the MC from Lycos, i used this code for the button:
//////////////////////////////////////////////
on (release) {
_root.contents.loadMovie(“http://members.lycos.co.uk/username/contact.swf”);
}
///////////////////////////////////////////////
the send button of this mail form has some code also to load the variables and is as follows:
…etc
loadVariables(“form.php”,this,“POST”);
this.onData = function()
…etc
question:
should the path to the php file include all the URL to Lycos ?
should it be:
loadVariables(“form.php”,this,“POST”);
—or—
loadVariables(“http://members.lycos.co.uk/username/sendmail.php",this,"POST”);
i tried both and it didnt send anything.
from Lycos it send email but not from freewebs.
ANYONE KNOWS THE PROBLEM ??
THX GUYS.