-2

検証できない HTML ファイルがあり、Line 65, Column 7: document type does not allow element "table" here;というエラーが表示され続けます。「object」、「applet」、「map」、「iframe」、「button」、「ins」、「del」開始タグのいずれかが欠落しています <table><tr>

しかし、私の文書には 65 行目はありません。コードは以下のとおりです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
    <head>
        <link rel="stylesheet" type="text/css" href="style_2.css"></link>
        <title> Gadgets </title>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
    </head>
<body>



    <div class="container">
        <div class="background">
            <div class="innerContainer">
            <?php include("header.php"); ?>
            <div class="content">
            <div class="scroll">
<?php
error_reporting(0);
$con = mysql_connect("xxxxxxxx");
mysql_select_db("xxxx", $con);
$result = mysql_query("SELECT * FROM gadgets");
?>
<p>  
<?php
echo "<table>";  
echo "<tr> 
    <th>Name</th> 
    <th>Description</th> 
    <th>Price</th>
    <th>Manufacturer</th>
    <th>Image</th> 
  </tr>"; 
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" .$row['Name']."</td>";
echo "<td>" .$row['Description'] ."</td>";
echo "<td>" .$row['Price'] ."</td>";
echo "<td><img src='" .$row['ImageURL'] ."' style='width: 200px; height: 150px;' alt='Image' /></td>";
echo "</tr>";
}
echo "</table>"; 
?>
</p>
<?php
mysql_close($con);
?>

            </div>
            </div>
            <?php include("footer.php"); ?>  

        </div>
        </div>
    </div>

</body>
</html> 
4

1 に答える 1

4

バリデーターは、PHP ではなく HTML で動作します (したがって、行番号を生成された HTML と比較してください。W3C 検証サービスの [ソースの表示] オプションにも注意してください)。

段落に表を含めることはできません。<table>外側に移動<p>

于 2012-05-07T19:29:53.753 に答える