如何打印此格式的表格

时间:2015-04-04 13:10:22

标签: php html mysql

我在mysql中有以下数据,我想以这种格式回显:

数据:

名称,图片网址,链接

我想像这样动态打印:http://screensaver.cf/screensavers.php

我不知道用户的屏幕宽度,但我希望它尽可能宽地显示。

如何在html和PHP中执行此操作?

我的代码:

<?php
    require("config.php");
?>   

<div id="main-wrap">
    <div class="container">
        <div id="main">
            <div id="content"><div id='wsite-content' class='wsite-elements wsite-not-footer'>
<div class="paragraph" style="text-align:left;">
<?php

    $sql='SELECT * FROM `games` where 1=1';

    $data = mysql_query($sql);
    echo '<h4 class="result">Result:</h4>';

    while($row = mysql_fetch_row($data)){

       $table=WHAT TO DO HERE TO MAKE IT LOOK LIKE THAT???????
       echo $table;
       echo '<br><br>';
    }
?>
</div>
</div>
        </div>
    </div>
</div>

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

P.S我知道mysql是折旧的,我一直在努力学习Mysqli,因为我在第8课,我没有太多时间。

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
<style>.a{float:left;}
</style>
&#13;
> 
in while loop use this

<div class = "a"> 
<?php  <img src='".$row['url']."' width='140' height='140'> ?>
</div>
&#13;
&#13;
&#13;