为了创建我网站的概览,我想存储人们所做的每一个动作。所以我做了这部分:
<?php
if($errors) {
foreach($errors as $error) {
$result = mysql_query("INSERT INTO deverror (id, ip, page, message, datum) VALUES (NULL, '".$ip."', 'http://scrshot.com/dev.php', '".$error."', '".$today."')", $connection);
}
}
?>
现在我有一个问题。如果我犯了一个错误,它会在错误屏幕上显示 3 行:
我怎样才能将所有这些“错误/错误”放在一行中,像这样?
(注意:是的,我知道我正在使用 mysql,这很愚蠢。)