如何在PHP中实现DataList(asp.net)类的功能?

时间:2009-07-04 12:06:55

标签: php asp.net datalist

我想在两列中显示数据,如下所示

Entry 1                                 Entry 2
entry 1 description                     entry 2 description

Entry 3                                 Entry 4
entry 3 description                     entry 4 description

Entry 5                                 
entry 5 description                     

现在在asp.net中它很简单,只需让一个数据列表进行一些设置并为其提供数据源,它就会为你呈现它。

但是在PHP中如何显示这种列表,有人可以给我一些代码吗?

由于

2 个答案:

答案 0 :(得分:1)

我假设您想要绘制一个html表.. 这很容易处理html布局&变量列号。 这是一个示例代码,可以完全满足您的需求..

        /* populate sample data */
    for($i=1; $i<10; $i++) {  $data_array[]=array('Entry '.$i,'entry '.$i.' description');  }

    /* how many columns */
    $column_number='3';

    /* html table start */
    ?><table border="1" cellspacing="5" cellpadding="5"><?php

    $recordcounter=1;  /* counts the records while they are in loop */
    foreach($data_array as $record) { 

        /* decide if there will be new Table row (<TR>) or not ... left of division by column number is the key */
        if($recordcounter%$column_number==1){ echo "<tr>"; }
        ?>          
            <td> 
                <?=$record[0]?> 
                <br />
                <?=$record[1]?>
            </td>
        <?php
        /* decide if there will be end of table row */
        if($recordcounter%$column_number==0){ echo "</tr>"; }
        $recordcounter++;  /* increment the counter */
    }

    if(($recordcounter%$column_number)!=1){ echo "</tr>"; }  

    ?></table><?php

答案 1 :(得分:0)

我想你问的是如何构建HTML输出?

<?php $array = array('Item 1' => 'Description 1', 'Item 2' => 'Description 2'); ?>

<dl>
<?php foreach ($array as $item => $description) : ?>
    <dt><?php echo $item; ?></dt>
    <dd><?php echo $description; ?></dd>
<?php endforeach; ?>
</dl>

您可以使用CSS轻松设置此样式,将其浮动以制作列或者您拥有的内容。

如果您正在使用框架,它可能包含某种类型的帮助程序来执行此操作,但标准PHP不会。

这会回答你的问题吗?