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


PHP Evento::readAll方法代码示例

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


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

示例1: Database

<?php

include "../classes/Database.class.php";
include "../classes/Login.class.php";
include "../classes/Evento.class.php";
$database = new Database();
$db = $database->getConnection();
$login = new Login($db);
if (isset($_POST['login'])) {
    $login->setUsuario($_POST['usr']);
    $login->setSenha($_POST['pass']);
    $login->login();
}
if (isset($_GET['logout'])) {
    $login->doLogout();
}
if ($login->isLoggedIn()) {
    $evento = new Evento($db);
    $eventos = $evento->readAll();
    $titulo = "Todos os eventos";
    $content = array();
    $content[] = "tabelasEventos.php";
    include "template/dash.php";
} else {
    include "template/login.php";
}
开发者ID:1fabiosoares,项目名称:evento-timeline-php,代码行数:26,代码来源:index.php

示例2: Config

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="" />
        <meta name="description" content="" />
        <meta name="viewport" content="width=device-width">        
        <link rel="stylesheet" href="css/templatemo_main.css">
开发者ID:ADS-Fatec,项目名称:Projeto-dos-Ingressos,代码行数:31,代码来源:eventos.php


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