我想以无序列表格式显示存储在 $error 中的所有错误。以下是显示错误的代码。
<?php
if (!empty($error)) {
echo '<p class="error"><strong>Your message was NOT sent<br/> The following error(s) occurred:</strong><br/>'. '<li>' . $error . '</li>' . '</p>';
} elseif (!empty($success)) {
echo $success;
}
?>
问题是上面的代码只显示列表中的第一个错误,但其余的只是显示在单独的行中,没有列表格式。所有错误都以以下格式存储:
$error .= "You didn't type in your name. <br />";
我尝试删除 br 标签,但没有奏效。
任何帮助将非常感激。提前致谢 :)