使用PHP显示Mysql数据给我一个空白页面

时间:2012-04-04 09:29:39

标签: php css

我正在尝试在php页面中显示包含来自我的数据库的数据的表。

完全没问题。

当我尝试使用css使表格更好看时,浏览器只给我一个空白页面。 这是我的代码...... 如果我在打开表标签后删除了id = csstest部分,一切正常,只要我添加id = csstest,我就会得到一个空白页... 我做错了什么?

    <?php

include 'config.php';

if (!mysql_connect($db_host, $db_user, $db_pwd))
    die("Can't connect to db");

if (!mysql_select_db($database))
    die("Can't select db");

// sending query
$result = mysql_query("SELECT data, cur_timestamp FROM {$table}");
if (!$result) {
    die("Check your SQL query");
}

$fields_num = mysql_num_fields($result);

echo "<h1>Tabella: {$table}</h1>";
echo "<table id="csstest"><tr>";
// printing table headers
for($i=0; $i<$fields_num; $i++)
{
    $field = mysql_fetch_field($result);
    echo "<td>{$field->name}</td>";
}
echo "</tr>\n";
// printing table rows
while($row = mysql_fetch_row($result))
{
    echo "<tr>";

    // $row is array... foreach( .. ) puts every element
    // of $row to $cell variable
    foreach($row as $cell)
        echo "<td>$cell</td>";

    echo "</tr>\n";
}
mysql_free_result($result);
mysql_close($result);
?>
</table>

3 个答案:

答案 0 :(得分:4)

更改以下声明:

echo "<table id="csstest"><tr>";

到此:

echo "<table id=\"csstest\"><tr>";

答案 1 :(得分:4)

你需要在双引号之前添加斜杠:

echo "<table id=\"csstest\"><tr>";

答案 2 :(得分:1)

echo "<table id="csstest"><tr>";

上面的代码会生成解析错误,并且您的错误报告已关闭,因此它只显示空白页面 尝试以下方法

echo "<table id='csstest'><tr>";
echo '<table id="csstest"><tr>';
echo "<table id=\"csstest\"><tr>";