I have created a Flash CS4 survey form that uses a borrowed PHP3 form. I borrowed it since I have no PHP programming knowledge. The problem is that I am either missing something or doing something wrong with the PHP script. The Flash file works fine. I will be happy to send the .fla file if you need it. All Input Text boxes have an "Instance Name".
Thank You in advance for your help.
Here is the PHP3 script (and can someone please tell me the difference between a PHP and a PHP3 script?):
<?php
$adminaddress = "positivetracy@bellsouth.net?cc=webmaster@mediaeclectic.com&subject=Exit Survey";
$sitename = "Nature Wise TV";
mail("$adminaddress","Exit Survey",
"A viewer at $sitename has made the following enquiry\n
A1: $q1
A2: $q2
A3: $q3
A4: $q4
A5: $q5
Name: $name
Company Name: $company
Telephone: $telno
Email: $from\n
Comments:
-----------------------------------------------------------------------------------------
$comments
Logged Info :
-----------------------------------------------------------------------------------------
Using: $HTTP_USER_AGENT
Hostname: $ip
IP address: $REMOTE_ADDR
Date/Time: $date","FROM:$adminaddress");
?>