我在该数据库中创建了一个数据库和不同的表。 现在,当我尝试使用我的php文件中的html创建一个在浏览器中显示它的表时, 它抛出一些错误。 我在我的表中使用colspan属性。 当我运行我的php文件时,它显示为"行号16和#34;中的意外2;
<html>
<head>
</head>
<body>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "final_database";
$conn = mysql_connect($servername, $username, $password);
mysql_select_db("final_database");
echo "<table border=1>
<thead>
<tr>
<th colspan="2">parametr_1</th> //line number 16
<th colspan="2">parameter_2</th>
<th colspan="2">parameter_3</th>
</tr>
<tr>
<th>subhead1</th>
<th>subhead2</th>
<th>subhead3</th>
<th>subhead4</th>
<th>subhead5</th>
<th>subhead6</th>
</tr>";
echo "<tr>";
echo "</table>";
?>
</body>
答案 0 :(得分:2)
试试这个:
echo "<table border=1>
<thead>
<tr>
<th colspan='2'>parametr_1</th>
<th colspan='2'>parameter_2</th>
<th colspan='2'>parameter_3</th>
</tr>
<tr>
<th>subhead1</th>
<th>subhead2</th>
<th>subhead3</th>
<th>subhead4</th>
<th>subhead5</th>
<th>subhead6</th>
</tr>";
echo "<tr>";
echo "</table>";
使用单引号而不是双引号。