我有以下显示mysql查询的结果。
while ($row= mysql_fetch_array($result)) {
// Switch the background colour
$bg = ($bg=='#eeeeee' ? '#ffffff' : '#eeeeee');
echo '<tr bgcolor="' . $bg . '">
<td align="left">' . '<p>' . $row['timestamp'] . '</p>' . '</td>
<td align="left">' . '<p>' . $row['title'] . '</p>' . '</td>
<td align="left">' . '<p>' . $row['description'] . '</p>' . '</td>
</tr>';
}
如何显示双字节字符集(非英文)?
我尝试将其添加到我的 html 头中,但没有运气:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
谢谢。