如何在单个div中隔离php查询

时间:2015-07-22 23:58:03

标签: php html css

我尝试在网上找到我的问题,但看起来我无法正确地提出问题。所以,这里是:我想在各个div中显示php查询以进行网格视图,就像电子商务一样。也许还有另外一种方式来发布结果,如果是这样,我会很乐意反馈你的意见!非常感谢你的时间!

HTML& PHP:

<div class="foo">
<?php    
//Execute the SQL code and return records
$query = mysql_query($query);
$numrows = mysql_num_rows($query);
if ($numrows > 0) {
    while ($row = mysql_fetch_assoc($query)) {
        $id = $row['ID'];
        $input1 = $row['input1'];    
        echo "<h2>$input1</h2>";
        echo "<hr>";
    }
} else {
    echo "No results found.";
}
?>
</div>

CSS:

.foo {
width: 200px;
display: inline-block;
}

2 个答案:

答案 0 :(得分:0)

分别在打开和关闭while循环时尝试打开和关闭“individual”div。

答案 1 :(得分:0)

<?php 
$query = mysql_query($query);
$numrows = mysql_num_rows($query);
if ($numrows > 0) {
while ($row = mysql_fetch_assoc($query)) {
$id = $row['ID'];
$input1 = $row['input1'];
echo '<div class="foo">'; 
echo "<h2>$input1</h2>";
echo "<hr>";
}
} else {
echo "No results found.";
}
echo "</div>";
?>