yii CListView - adding serial number 添加序號

模板如下:

<table border="1">
    <tr>
        <th width="35">S.No.</th>
        <th align="left">Club Member</th>
        <th width="155">Schedule</th>
        <th width="155">Point</th>
    </tr>
        <?php $this->widget('zii.widgets.CListView', array(
            'dataProvider'=>$dataProvider,
            'itemView'=>'_reportSchedule',
        )); ?>
</table>

我要爲每一天數據添加一個序號。

代碼:

<?php echo $index;?> 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章