1
我不知道如何使用我的代碼進行分頁。我會把每頁三個項目,但我不知道如何去做。如果有人能指導我!Yii和Bootstrap分頁訪問
<?php
$rows = Yii::app()->db->createCommand()
->select('username,hash')
->from('cruge_user')
->queryAll();
echo "<table class='table table-striped' id='connect_table' border=1 style='width:300px'>
<tr>
<td>USUARI</td>
<td>ESTAT</td>
</tr><tr>";
foreach ($rows as $key => $valor) {
foreach ($valor as $col => $valors) {
if($col=='username'){
$username=$valors;
if($username!=$user){
echo "<td><i class='icon-user'>__".$valors."</td>";
}
}
// $(document).ready(function() {
if($col=='hash'){
if($valors!=""){
if($username!=$user){
//echo "<td><button id='connect' value='\"$valors\"' type='button'>PLAY</button></td>";
echo "<td class='success'><button title='clica per jugar' class='btn' id='connect' onclick='envia_hash(\"$valors\")' type='button'></button></td>";
echo "</tr>";
}
}else {
echo "<td><img title='desconectat' src='../img/disable.png'></td>";
echo "</tr>";
}
}
}
}
使用cgridview的yiibooster部件。它會自動進行分頁。 – MH2K9