10/10/2018, 10:55
Help cách giủi thông tin từ mail vào Form
Em mới học đang muốn gủi nội dung từ form web vào Email của mình bằng php nhưng em không biết phải cần những điều kiện (cài đặt gì ) gì để tới mail được..mong mọi người đi trươc chỉ giúp đang cần gấp làm đồ án .!
Em làm nhưng báo lỗi như sau..!
Code
Đây là là lỗi thông bao..!
Warning: Wrong parameter count for ini_set() in D:localhostwampwwwdo_anadminmailform.php on line 8
Warning: mail() [function.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 D:localhostwampwwwdo_anadminmailform.php on line 13
Thank you for using our mail form
Em làm nhưng báo lỗi như sau..!
Code
PHP Code:
<?php
if (isset($_REQUEST***91;'email'***93;))
//if "email" is filled out, send email
{
//send email
echo ini_set();
$email = $_REQUEST***91;'email'***93; ;
$subject = $_REQUEST***91;'subject'***93; ;
$message = $_REQUEST***91;'message'***93; ;
mail( "hoangw3c@gmail.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you for using our mail form";
}
else
//if "email" is not filled out, display the form
{
echo "<form method='post' action='mailform.php'>
Email: <input name='email' type='text' /><br />
Subject: <input name='subject' type='text' /><br />
Message:<br />
<textarea name='message' rows='15' cols='40'>
</textarea><br />
<input type='submit' />
</form>";
}
?>
Đây là là lỗi thông bao..!
Warning: Wrong parameter count for ini_set() in D:localhostwampwwwdo_anadminmailform.php on line 8
Warning: mail() [function.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 D:localhostwampwwwdo_anadminmailform.php on line 13
Thank you for using our mail form
Bài liên quan
Lỗi thứ hai, thiếu mail server.
http://www.izwebz.com/video-tutorial...g-html-phan-5/
thanhk nhiều..!