本文整理汇总了PHP中DAOFactory::getCategoriaDAO方法的典型用法代码示例。如果您正苦于以下问题:PHP DAOFactory::getCategoriaDAO方法的具体用法?PHP DAOFactory::getCategoriaDAO怎么用?PHP DAOFactory::getCategoriaDAO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DAOFactory
的用法示例。
在下文中一共展示了DAOFactory::getCategoriaDAO方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: session_start
// Bibliotecas
require_once 'config.php';
// Helpers
require 'helpers/formataData.php';
// Sessão Login
session_start();
// Head
require 'includes/head.php';
// Post
// Parametros
$id_categoria = $_GET['id_categoria'];
// Lista
$post = DAOFactory::getPostDAO()->getPosts($id_categoria);
// Categoria > Lista
$categoria = DAOFactory::getCategoriaDAO()->queryAllOrderBy('nome');
?>
<body>
<div id="container">
<?php
require 'includes/topo.php';
?>
<div id="wrapper">
<?php
require 'includes/menu.php';
示例2: session_start
<?php
// Bibliotecas
require_once '../config.php';
// Sessão Login
session_start();
// Head
require '../includes/head.php';
// Categoria
//Parametros
$id_categoria = $_GET['id_categoria'];
//> Lista
$categoria = DAOFactory::getCategoriaDAO()->load($id_categoria);
?>
<body>
<div id="container">
<?php
require '../includes/topo.php';
?>
<div id="wrapper">
<?php
require '../includes/menu.php';
?>
示例3: Categoria
<?php
// Bibliotecas
require_once '..\\config.php';
$id_categoria = $_POST['id_categoria'];
$nome = $_POST['nome'];
$categoria = new Categoria();
$categoria->nome = $nome;
$categoria->idCategoria = $id_categoria;
DAOFactory::getCategoriaDAO()->update($categoria);
header('location: ../admin/categoria.php');
示例4:
<?php
require_once '..\\config.php';
$id_categoria = $_GET['id_categoria'];
DAOFactory::getCategoriaDAO()->delete($id_categoria);
header('location: ../admin/categoria.php');
示例5: Categoria
<?php
require_once '..\\config.php';
// Parametros
$nome = $_POST['nome'];
$categoria = new Categoria();
$categoria->nome = $nome;
DAOFactory::getCategoriaDAO()->insert($categoria);
header('location: ../admin/categoria.php');