hi people sorry to bother you with this Question but i am straggling i am nbew to php but i realy keen to use it, the thing is i am trying to use the mail function to receive information from a form but nothing seems to work my code is like this and my php. ini file lookes like this respectively.
[code=php]
<?
$email = $_REQUEST['email'];
$message = $_REQUEST['message'];
mail ("user@domain.c om", "Feedback From Results",
$message, "from: $email");
?>
[/code]
php.ini
rember i am using my localhost.
please help.
Lurryhomes
[code=php]
<?
$email = $_REQUEST['email'];
$message = $_REQUEST['message'];
mail ("user@domain.c om", "Feedback From Results",
$message, "from: $email");
?>
[/code]
php.ini
Code:
[mail function] ; For Win32 only. SMTP =smtp.blueyonder.co.uk ; For Win32 only. sendmail_from = user@domain.com
please help.
Lurryhomes
Comment