i have set up a feedback form when i submit the button the details shd display in my maibox.
now when i click the submit button it displays the error as
Warning: mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in c:\program files\easyphp1-8\www\sendmail.php on line 6
my php script is as follows:
<?
$email = $REQUEST['email'] ;
$message = $REQUEST['message'] ;
mail( "gaya@asd.sg", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://localhost/thankyou.html" );
?>
can anyone find the problem lying here?
-gthri