Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 $_POST 数组中的表单发送所有值。
我遍历每个元素的数组并将其存储在另一个变量中,例如 $results 连接结果。
但是当我邮寄它们时,它们被组合在一起
我用了
foreach($_POST as $key=> $value){ $results .= $key .":".$value."\n"; }
我什至用<br/>\n 代替了相同的结果,al 值在同一行。我应该用什么?
<br/>
标准邮件格式使用\r\nnot \n。尝试使用那种风格的新线。
\r\n
\n