本文整理汇总了PHP中Categoria::findAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Categoria::findAll方法的具体用法?PHP Categoria::findAll怎么用?PHP Categoria::findAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Categoria
的用法示例。
在下文中一共展示了Categoria::findAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<div class="widget-header"> <i class="icon-th-list"></i>
<h3>Categorias</h3>
</div>
<!-- /widget-header -->
<div class="widget-content">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th class="span1"> # </th>
<th class="span9 "> Nome da Categoria</th>
<th class="td-actions"> </th>
</tr>
</thead>
<?php
foreach ($categoria->findAll() as $key => $value) {
?>
<tbody>
<tr>
<td> <?php
echo $count++;
?>
</td>
<td> <?php
echo $value->nome;
?>
</td>
<td class="td-actions"><a href="home.php?pagina=categorias&acao=editar&id=<?php
echo $value->id;
?>
示例2: session_start
<?php
session_start();
if (!isset($_SESSION["nome"])) {
header("Location: inicio.php");
} else {
include "boasvindas_autenticacao.php";
}
require_once "Categoria.class.php";
$listaCategoria = Categoria::findAll();
?>
<html>
<head>
<meta charset="UTF-8" />
<title>Bazar Tem Tudo</title>
</head>
<body>
<?php
require_once "cabecalho.inc";
?>
<div id="corpo">
<div>
<?php
exibe_usuario($saudacao);
?>
</div>
<div>
<table border="1">
<thead>
<tr>
<th>Código</th>