2
如何分配的名字,我有數組每一個關鍵
$fullname = $_POST['fullname'];
$company_name = $_POST['company_name'];
$email = $_POST['email'];
$address = $_POST['address'];
$telephone = $_POST['telephone'];
$comment = $_POST['comment'];
$data = array ( "Full Name :" => $fullname,
"Company :" => $company_name,
"email :" => $email,
"address :" => $address,
"telephone :" => $telephone,
"mobile :" => $mobile,
"comment :" => $comment);
我想表明resul如(Fullname : $fullname Email: $email)
使用implode(" ",$data)
我能做些什麼,以它作爲電子郵件發送
和字符串添加數組??
謝謝你很好的答案,它的工作 –