Hi there,
Suddenly I have a problem with a mail form that worked fine b4 !!??
Maybe server updated version of php?
Anyway,
This is the php script I use
<?php
$TextVariable = '&results=';
$response = 'EMail Sent. Thank You..';
$name = $_POST['name'];
$email = $_POST['email'];
$position = $_POST['position'];
$company = $_POST['company'];
$telephone = $_POST['telephone'];
echo $TextVariable;
echo $response;
mail ("
[email protected]", "NK Website Feedback", "
Feedback from NK Website:
name: $name
email: $email
position: $position
company: $company
telephone: $telephone
IP: $REMOTE_ADDR
user comments:
$message
","From:
[email protected]");
?>
and all I do is post using the load variables command.
loadVariablesNum("downloadform.php", 0, "POST");
The prob is it doesnt work when sent from flash. If you just load the php file in the browser it sends. (obviously with no variables filled)
Do I need to swonk this??
Thanks for any help !!
Nick