当前位置: 首页>>代码示例>>PHP>>正文


PHP Evento::searchAll方法代码示例

本文整理汇总了PHP中Evento::searchAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Evento::searchAll方法的具体用法?PHP Evento::searchAll怎么用?PHP Evento::searchAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Evento的用法示例。


在下文中一共展示了Evento::searchAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Config

$from_record_num = $records_per_page * $page - $records_per_page;
//Inclui funções e parâmetros essenciais para a página.
include_once 'include/config.php';
include_once 'include/evento.php';
include_once 'include/ambiente.php';
include_once 'include/categoria.php';
//Instância do banco de dados.
$database = new Config();
$db = $database->getConnection();
//Instância das funções do módulo atual.
$evento = new Evento($db);
$ambiente = new Ambiente($db);
$categoria = new TipoCategoria($db, 'evento');
//Condicional para exibir todos os registros com e sem a pesquisa.
if ($_POST) {
    $stmt = $evento->searchAll($page, $from_record_num, $records_per_page, $_GET['ordem'], $_POST['pesquisa']);
    $num = $evento->countSearchAll($_POST['pesquisa']);
} else {
    $stmt = $evento->readAll($page, $from_record_num, $records_per_page, $_GET['ordem']);
    $num = $evento->countAll();
}
//Atalho da página raíz do módulo.
$url = 'eventos.php?ordem=1';
?>
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
        <title>Área Restrita - Eventos</title>
        <meta name="keywords" content="" />
开发者ID:ADS-Fatec,项目名称:Projeto-dos-Ingressos,代码行数:31,代码来源:eventos.php


注:本文中的Evento::searchAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。