設置$從變量郵件功能我有一個形式,下面的代碼現在無法在PHP
<input type=text name=sender maxlength="50"/>
<input type=email name=mail />
<input type=text name=title maxlength="150"/>
<textarea name=issue rows=6></textarea>
<button name="submit" type=submit>Submit</button>
<?php
if (!empty($_REQUEST['sender'])&&!empty($_REQUEST['mail'])&&!empty($_REQUEST['issue']) &&!empty($_REQUEST['title'])) {
$sender=$_REQUEST['sender'];
$email=$_REQUEST['mail'];
$issue=$_REQUEST['issue'];
$title=$_REQUEST['title'];
$from="$sender : $email";
mail("mail to send to", $title, $issue, $from);
}
?>
,問題是,我得到ipg.apnasikkacom名稱和[email protected]作爲電郵地址。這是爲什麼發生?
也許這是你填寫的形式? – 2015-03-31 14:36:51
首先關閉所有變量,嘗試使用'var_dump'。 – 2015-03-31 14:37:09
我沒有看到表單標籤;發佈方法,你真的應該爲你的元素使用引號。在嘗試任何操作之前,請花時間閱讀本手冊http://php.net/manual/en/function.mail.php – 2015-03-31 14:40:59