// Database Settings
define('DB_HOST', '******');
define('DB_PORT', '******');
define('DB_USER', '******');
define('DB_PASS', '******');
define('DB_NAME', '******');
// Connection to Database
$database = new MySQLi(DB_HOST, DB_USER, DB_PASS, DB_NAME, DB_PORT);
$sql = 'SELECT AManufactureBrand.brand, AManufactureModel.model, AManufactureEdition.edition'
. ' FROM AManufactureModel'
. ' INNER JOIN AManufactureBrand ON AManufactureModel.brand_id = AManufactureBrand.brand_id'
. ' INNER JOIN AManufactureEdition ON AManufactureModel.model_id = AManufactureEdition.model_id'
. ' WHERE AManufactureEdition.edition=\'345i\'';
$resultSet = $database->query($sql);
// Begin building some HTML output
$html = '<table border="0">
<tr>
<th>Editions</th>
</tr>';
while ($row = $resultSet->fetch_assoc())
{
$html .= '<tr><td>' . $row['brand'] . '</td></tr>';
$html .= '<tr><td>' . $row['model'] . '</td></tr>';
$html .= '<tr><td>' . $row['edition'] . '</td></tr>';
}
$html .= '</table>';
echo $html;
?>
例如,该查询调用了BMW 3Series 345i,我从mysql中打印了两个结果
到我网站上的表格。两个记录打印在向下的一列上的问题
向前。
目前,我在网页上得到了这样的结果,两个mysql记录垂直向下打印一列。
我正在尝试使它像这样穿过并在水平方向上彼此相邻打印多辆汽车。
最佳答案
不确定您要做什么,但是我建议替换为:
// Begin building some HTML output
$html = '<table border="0">
<tr>
<th>Editions</th>
</tr>';
while ($row = $resultSet->fetch_assoc())
{
$html .= '<tr><td>' . $row['brand'] . '</td></tr>';
$html .= '<tr><td>' . $row['model'] . '</td></tr>';
$html .= '<tr><td>' . $row['edition'] . '</td></tr>';
}
$html .= '</table>';
有了这个:
// Begin building some HTML output
$html = '<table border="0">
<tr>
<th>Brand</th>
<th>Model</th>
<th>Edition</th>
</tr>\n';
while ($row = $resultSet->fetch_assoc())
{
$html .= '<tr>';
$html .= '<td>' . htmlentities($row['brand']) . '</td>';
$html .= '<td>' . htmlentities($row['model']) . '</td>';
$html .= '<td>' . htmlentities($row['edition']) . '</td>';
$html .= '</tr>\n';
}
$html .= '</table>';
这将为您提供正确的3列输出。如果这不是您想要的,请澄清您的问题。
关于php - PHP查询结果从一列到多列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3816038/