这是我服务的第一个主题。
我读过Head First PHP和MySql。我在生成电子邮件时遇到了一些问题。
xampp或diffrent服务器中的服务器给我错误: 未定义的变量:邮件 函数名必须是字符串
我使用以下指令配置XAMPP: https://system66.blogspot.com/2010/01/how-to-send-mail-from-localhost-with.html
你能帮助我:)? 谢谢你的回复。以下是代码:
<?php
$name = $_POST ['firstname']. ' ' . $_POST ['lastname'];
$how_many = $_POST ['howmany'];
$when_it_happened = $_POST ['whenithappened'];
$how_long = $_POST ['howlong'];
$alien_description = $_POST ['aliendescription'];
$fang_spotted = $_POST ['fangspotted'];
$email = $_POST ['email'];
$other = $_POST ['other'];
$what_they_did = $_POST ['whattheydid'];
// Sending e-mail
$to = 'testowymail@test.pl';
$subject = 'Porwanie przez kosmitow';
$msg = "$name . 'porwano mnie : $when_it_happened i nie było mnie przez : $how_long.\n" .
"liczba kosmitów : $how_many\n" .
"Opis kosmitów : $alien_description\n" .
"Działania kosmitów: $what_they_did\n" .
"Czy widziano kła? $fang_spotted \n".
"Inne komentarze $other";
$mail ($to, $subject, $msg, 'From:' . $email);
echo 'Dziękujemy za przesłanie formularza. <br/><br/>';
echo "Masz na imię i nazwisko: " . $name . "<br/>";
echo 'Porwano Cię: ' . $when_it_happened . '<br/>';
echo 'I nie było Cię przez: ' . $how_long . '<br/>';
echo 'Opis kosmitów: ' . $alien_description . '<br/>';
echo 'Czy widziano Kła? ' . $fang_spotted . '<br/>';
echo 'Adres e-mail: ' . $email . '<br/>';
echo "Co z toba robili? " . $what_they_did . "<br/>";
echo 'Dodatkowy opis kosmitów: ' . $other . '<br/><br/>';
?>
答案 0 :(得分:1)
$mail ($to, $subject, $msg, 'From:' . $email);
应该是
mail ($to, $subject, $msg, 'From:' . $email);
删除$