當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Pagination::create_data方法代碼示例

本文整理匯總了PHP中Pagination::create_data方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pagination::create_data方法的具體用法?PHP Pagination::create_data怎麽用?PHP Pagination::create_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Pagination的用法示例。


在下文中一共展示了Pagination::create_data方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

    ?>
			<?php 
} else {
    ?>
				<tr>
					<td colspan="4">Não possui ci cadastrada!</td>
				</tr>
			<?php 
}
?>
        </tbody>
    </table>
</div>
<div class="grid_12" style="text-align: center;">
	<?php 
echo Pagination::create_data('ci/rascunho/', $cis->Total, $p);
?>
</div>
<div class="modal hide" id="modal-visualizacao" style="margin:-250px 0 0 -390px; width: 750px;">
	<div class="modal-header">
		<button type="button" class="close" data-dismiss="modal">×</button>
		<h3 class="cliente-nome">VISUALIZAÇÃO</h3>
	</div>
	<div class="modal-body" style="width: 720px;">

	</div>
	<div class="modal-footer">
		<a href="javascript:void(0);" class="btn" data-dismiss="modal">Fechar</a>
		<!-- <a class="btn btn-primary" id="button-enviar">Enviar</a> -->
	</div>
</div>
開發者ID:nylmarcos,項目名稱:estagio,代碼行數:31,代碼來源:rascunho.php

示例2:

						<td style="width: 30px; text-align: center;" colspan="2" ><a href="~/ci/visualizar/<?php 
        echo $ci->Id;
        ?>
" class="btn btn-success tool_tip" rel="tooltip" title="Visualizar"> <i class="icon-eye-open icon-white"></i></a></td>
					<?php 
    }
    ?>
				<?php 
}
?>
		</tbody>
	</table>
</div>
<div class="grid_12" style="text-align: center;">
	<?php 
echo Pagination::create_data('ci/recebidas/', $cis_resposta_r->Total, $p);
?>
</div>
<div id="modal-help" class="modal hide">
	<div class="modal-header">
		<button type="button" class="close" data-dismiss="modal">×</button>
		<h3 class="cliente-nome">AJUDA</h3>
	</div>
	<div class="modal-body">
		<table id="" class="table table-bordered table-striped table-condensed">
			<thead>
				<tr>
					<th style="text-align: center;">Imagem</th>
					<th style="text-align: center;">Significado</th>
				</tr>
			</thead>
開發者ID:nylmarcos,項目名稱:estagio,代碼行數:31,代碼來源:recebidas.php

示例3:

							<?php 
        }
        ?>
						</tr>
					<?php 
    }
    ?>
				</tbody>
			</table>
		</div>
	<?php 
}
?>
	<div class="grid_12" style="text-align: center;">
		<?php 
echo Pagination::create_data('ci/autoriza/', $cis_autorizacao->Total, $p);
?>
	</div>
	<div class="modal hide" id="modal-visualizacao" style="margin:-250px 0 0 -390px; width: 750px;">
		<div class="modal-header">
			<button type="button" class="close" data-dismiss="modal">×</button>
			<h3 class="cliente-nome">VISUALIZAÇÃO</h3>
		</div>
		<div class="modal-body" style="width: 720px;">

		</div>
		<div class="modal-footer">
			<a href="javascript:void(0);" class="btn" data-dismiss="modal">Fechar</a>
		</div>
	</div>
開發者ID:nylmarcos,項目名稱:estagio,代碼行數:30,代碼來源:autorizacao.php

示例4:

        }
        ?>


					<?php 
    }
    ?>
				<?php 
}
?>
		</tbody>
	</table>
</div>
<div class="grid_12" style="text-align: center;">
	<?php 
echo Pagination::create_data('ci/enviadas/', $cis_resposta_v->Total, $p);
?>
</div>
<div id="modal-help" class="modal hide">
	<div class="modal-header">
		<button type="button" class="close" data-dismiss="modal">×</button>
		<h3 class="cliente-nome">AJUDA</h3>
	</div>
	<div class="modal-body">
		<table id="" class="table table-bordered table-striped table-condensed">
			<thead>
				<tr>
					<th style="text-align: center;">Imagem</th>
					<th style="text-align: center;">Significado</th>
				</tr>
			</thead>
開發者ID:nylmarcos,項目名稱:estagio,代碼行數:31,代碼來源:enviadas.php


注:本文中的Pagination::create_data方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。