I have the following in my F8 AS 2.0:
and this in my php:PHP Code:getURL("email.php?sName=" + _root.form.contactName.text +
"&subject=" + _root.form.contactSubject.getSelectedItem().data +
"&email=" + _root.form.contactEmail.text +
"&message=" + _root.form.contactEmail.text,"_blank","POST");
but when I echo teh variable names, I get noghing.PHP Code:$name = $_POST['sName'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['message"'];


Reply With Quote