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


PHP cabecera函数代码示例

本文整理汇总了PHP中cabecera函数的典型用法代码示例。如果您正苦于以下问题:PHP cabecera函数的具体用法?PHP cabecera怎么用?PHP cabecera使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: displayForm

function displayForm($camposPendientes)
{
    cabecera();
    pie();
    if ($camposPendientes) {
        ?>
        <p class="error">Hubo algunos problemas con el formulario que usted presentó.
            Por favor, complete correctamente los campos obligatorios y haga clic en <b>Enviar</b> para volver a enviar el formulario.</p>
    <?php 
    } else {
        ?>
        <b>Por favor, rellene sus datos a continuacion y haga clic en "enviar encuesta":</b><br><br>
    <?php 
    }
    ?>
    <form method="post">
        Edad*: <input type="text" name="edad" /><br>
        ¿Asistes a algunos de estos espectaculos durante el año?
        <select  size="4"  multiple name="ocio[]">
            <option value="teatro">Teatro</option>
            <option value="cine">Cine</option>
            <option value="futbol">Futbol</option>
            <option value="conciertos">Conciertos</option>
        </select><br><br><br>
        ¿Qué tipo de restaurante prefieres?<br>
        Americano <input type="checkbox" name="restaurante[]" value="americano"/><br>
        Japones <input type="checkbox" name="restaurante[]" value="japones"/><br>
        Chino <input type="checkbox" name="restaurante[]" value="chino"/><br>
        Italiano <input type="checkbox" name="restaurante[]" value="italiano"/><br>
        <input type="submit" value="Enviar encuesta" name="enviar" />
    </form>

    <?php 
}
开发者ID:cancelajavi,项目名称:2-DAW,代码行数:34,代码来源:funcionesEjer1.php

示例2: conectaDb

function conectaDb()
{
    global $dbDb;
    try {
        $db = new PDO("sqlite:" . $dbDb);
        return $db;
    } catch (PDOException $e) {
        cabecera("Error grave", MENU_PRINCIPAL);
        print "  <p>Error: No puede conectarse con la base de datos.</p>\n";
        print "  <p>Error: " . $e->getMessage() . "</p>\n";
        pie();
        exit;
    }
}
开发者ID:JoanJSimpson,项目名称:DesarrolloInterfaces,代码行数:14,代码来源:biblioteca_sqlite.php

示例3: conectaDb

function conectaDb()
{
    try {
        $db = new PDO(MYSQL_HOST, MYSQL_USUARIO, MYSQL_PASSWORD);
        $db->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
        $db->exec("set names utf8mb4");
        return $db;
    } catch (PDOException $e) {
        cabecera("Error grave", MENU_PRINCIPAL);
        print "  <h4>Error: No puede conectarse con la base de datos.</h4>\n\n";
        print "  <h4>Error: " . $e->getMessage() . "</h4>\n";
        pie();
        exit;
    }
}
开发者ID:JoanJSimpson,项目名称:DesarrolloInterfaces,代码行数:15,代码来源:agenda_mysql.php

示例4: displayThanks

function displayThanks($mensajeFinal)
{
    cabecera();
    ?>
    <h1>Gracias</h1>
    <p>Gracias por enviar su foto<?php 
    if ($_POST["nombre"]) {
        echo ", " . $_POST["nombre"];
    }
    ?>
!</p>
    <?php 
    echo "<p>Esta es su {$foto}:</p>";
    ?>
<p><img src = "fotos/<?php 
    echo $_FILES["{$foto}"]["name"];
    ?>
" alt = "Foto" /></p>
    <?php 
    pie();
}
开发者ID:cancelajavi,项目名称:2-DAW,代码行数:21,代码来源:funcionesEjer8.php

示例5: displayForm

function displayForm($camposPendientes)
{
    cabecera();
    pie();
    if ($camposPendientes) {
        ?>
        <p class="error">Hubo algunos problemas con el formulario que usted presentó.
            Por favor, complete correctamente los campos obligatorios y haga clic en <b>Enviar</b> para volver a enviar el formulario.</p>
    <?php 
    } else {
        ?>
        <b>Por favor, rellene sus datos a continuacion y haga clic en "enviar encuesta":</b><br><br>
    <?php 
    }
    ?>
    <form method="post">
        Nombre*: <input type="text" name="nombre" /><br>
        Elige tu color de coche favorito<br>

        Rojo <input type="radio" name="color[]" value="rojo"><br>
        Verde <input type="radio" name="color[]" value="verde"><br>
        Azul <input type="radio" name="color[]" value="azul">
        <br><br>
        Elige los extras<br>
        Aire acondicionado <input type="checkbox" name="extras[]" value="aire_acondicionado"/><br>
        Yantas <input type="checkbox" name="extras[]" value="yantas"/><br>
        Tapiceria <input type="checkbox" name="extras[]" value="tapiceria"/><br><br>
        
        ¿Cual es el precio máximo que estarías dispuesto a pagar?
        <br>

        <input type="submit" value="Enviar" name="enviar" />
        <input type="reset" value="Borrar">
    </form>

    <?php 
}
开发者ID:cancelajavi,项目名称:2-DAW,代码行数:37,代码来源:funcionesEjer2.php

示例6: session_start

session_start();
/**
 * Bases de datos - agenda.php
 *
 * @author    Joan Piera Simó
 * @copyright 2016 Joan Piera Simó
 * @license   http://www.gnu.org/licenses/agpl.txt AGPL 3 or later
 * @version   2016-02-05
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Affero General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Affero General Public License for more details.
 *
 *  You should have received a copy of the GNU Affero General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
require_once "agenda.php";
cabecera("Inicio", MENU_PRINCIPAL);
?>
<div align="center"><h2>Bienvenido a tu agenda de telefonos, <?php 
echo $usuario;
?>
</h2></div>
<?php 
pie();
开发者ID:JoanJSimpson,项目名称:DesarrolloInterfaces,代码行数:31,代码来源:login2.php

示例7: session_start

// Inicio sesión
session_start();
//Inicializo la base de datos muebleBBB y obtengo los productos catalogados como 'novedades' y 'ofertas'
$BBDD = new MySQLDataBase("mueblebbb");
$MuebleBBB = new BBDDMuebleBBB($BBDD);
$MuebleBBB->cargarCatalogo();
$catalogo = $MuebleBBB->getCatalogo();
if (!empty($_POST)) {
    $productos = $catalogo->BuscarProductos($_POST["busca"]);
} else {
    $productos = [];
}
/***************************************************
	 GENERO EL HTML DE LA PÁGINA RESULTADOS_BUSQUEDA.PHP
	****************************************************/
echo cabecera("MUEBLEBBB - Búsqueda", "../css/estilos.css", "../js/libreria.js");
echo encabezadoIndex();
navegacion_sesion($_POST, $MuebleBBB);
echo Html::div_("contenedor_inicio");
echo Html::seccion(1, "Resultado de búsqueda");
if (!empty($productos)) {
    foreach ($productos as $producto) {
        if ($producto->__get("descuento") > 0) {
            $precio_descuento = $producto->__get("precio") - $producto->__get("precio") / 100 * $producto->__get("descuento");
            echo Html::div_("contenedor_producto") . Html::a_("catalogo.php?id_producto={$producto->__get("codigo")}") . Html::img("{$producto->__get("imagen")}", "{$producto->__get("nombre")}") . Html::span("{$producto->__get("descuento")}%", "oferta") . Html::seccion(2, "{$producto->__get("nombre")}", "nombre_producto") . Html::div_("detalles") . Html::p("{$producto->__get("categoria")}", "categoria") . Html::p_("{$precio_descuento} €", "precio") . Html::br() . Html::del("{$producto->__get("precio")}€", "precio_antes") . Html::_p() . Html::_div() . Html::_a() . Html::_div();
        } else {
            if ($producto->__get("nuevo")) {
                echo Html::div_("contenedor_producto") . Html::a_("catalogo.php?id_producto={$producto->__get("codigo")}") . Html::img("{$producto->__get("imagen")}", "{$producto->__get("nombre")}") . Html::div_("novedad") . Html::img("../imagenes/nuevo.png", "etiqueta indicando novedad", "etiqueta_nuevo") . Html::_div() . Html::seccion(2, "{$producto->__get("nombre")}", "nombre_producto") . Html::div_("detalles") . Html::p("{$producto->__get("categoria")}", "categoria") . Html::p("{$producto->__get("precio")}€", "precio") . Html::_div() . Html::_div() . Html::_a();
            } else {
                echo Html::div_("contenedor_producto") . Html::a_("catalogo.php?id_producto={$producto->__get("codigo")}") . Html::img("{$producto->__get("imagen")}", "{$producto->__get("nombre")}") . Html::seccion(2, "{$producto->__get("nombre")}", "nombre_producto") . Html::div_("detalles") . Html::p("{$producto->__get("categoria")}", "categoria") . Html::p("{$producto->__get("precio")}€", "precio") . Html::_div() . Html::_div() . Html::_a();
            }
开发者ID:jlalovi,项目名称:Proyecto-muebleBBB,代码行数:31,代码来源:resultados_busqueda.php

示例8: session_start

<?php

// Librer�as
require_once '../librerias/Html.php';
require_once '../librerias/navegacion_sesion.php';
require_once '../librerias/MySQLDataBase.php';
require_once '../librerias/BBDDMuebleBBB.php';
require_once '../html/cabecera.php';
require_once '../html/encabezado.php';
require_once '../html/nav.php';
require_once '../html/pie.php';
require_once '../html/sesion_carrito.php';
// Inicio sesi�n
session_start();
//Inicializo la base de datos muebleBBB
$BBDD = new MySQLDataBase("mueblebbb");
$MuebleBBB = new BBDDMuebleBBB($BBDD);
/***************************************
	 GENERO EL HTML DE LA P�GINA COOKIES.PHP
	 ***************************************/
echo cabecera("MUEBLEBBB - Cookies", "../css/estilos.css", "../js/libreria.js");
echo encabezadoIndex();
navegacion_sesion($_POST, $MuebleBBB);
echo Html::p("Aqu� va el cuerpo de la p�gina");
echo pie();
开发者ID:jlalovi,项目名称:Proyecto-muebleBBB,代码行数:25,代码来源:cookies.php

示例9: session_start

session_start();
// Compruebo que se está accediente a la página con los privilegios adecuados
if (!isset($_SESSION["admin"]) || $_SESSION["admin"] == false) {
    header("location:inicio.php");
}
//Inicializo la BBDD de MuebleBBB, cargo el catálogo y lo recojo en una variable.
if (empty($_POST)) {
    $BBDD = new MySQLDataBase("mueblebbb");
    $MuebleBBB = new BBDDMuebleBBB($BBDD);
    $MuebleBBB->cargarCatalogo();
    $catalogo = $MuebleBBB->getCatalogo();
}
/****************************************************
	 GENERO EL HTML DE LA PÁGINA ADMIN_DATOS_PRODUCTO.PHP
	 ****************************************************/
echo cabecera("MUEBLEBBB - Administración", "../css/estilos.css", "../js/libreriaAdmin.js");
echo encabezadoAdmin();
echo navAdmin();
echo sesion_carritoAdmin($_SESSION);
// Si $_POST no está vacío es que se ha realizado una solicitud de 'Añadir producto' o 'Modificar producto' en admin.php
if (!empty($_POST)) {
    echo Html::seccion(1, "Cambios realizados:");
    $BBDD = new MySQLDataBase("mueblebbb");
    $MuebleBBB = new BBDDMuebleBBB($BBDD);
    if (!empty($_POST)) {
        $MuebleBBB->actualizarProductos($_REQUEST, $_FILES);
    }
    echo Html::a_("../paginas/admin.php", "enlace_volver") . Html::span("<< ") . Html::span("Volver a Administración", "estilo") . Html::_a();
    // TESTEO *****************************************///*
    echo Html::details_() . Html::summary("Detalles productos:");
    //*
开发者ID:jlalovi,项目名称:Proyecto-muebleBBB,代码行数:31,代码来源:admin_datos_producto.php

示例10: cabecera



<!-- pie de pagina -->
<div data-role="footer">
  <h2>Todos los derechos resevador @ Seguridad y Sistema JM</h2>
</div>

</div>

<!-- CUENTA BANCARIA -->
<div data-role="page" id="banco">

<!-- cabecera -->
  <div data-role="header" data-theme="e">
  <?php 
echo cabecera();
?>
  </div>

  <!-- contenido -->
  <div data-role="main" class="ui-content2">
<?php 
echo logo();
?>

  <h1 class="letras">Cuentas Bancarias</h1>
    <ul data-role="listview" data-inset="true" data-shadow="false">
      <li data-role="collapsible" data-iconpos="right" data-inset="false">
        <h2>Provincial</h2>
        <ul data-role="listview" data-theme="b">
          <li><div class="datos_banco">
开发者ID:jlobaton,项目名称:inventario,代码行数:29,代码来源:prueba.blade.php

示例11: displayForm

function displayForm($camposPendientes)
{
    cabecera();
    if ($camposPendientes) {
        ?>
        <p class="error">Hubo algunos problemas con el formulario que usted presentó.
            Por favor, complete correctamente los campos remarcados de abajo y haga clic en Enviar para volver a enviar el formulario.</p>
    <?php 
    } else {
        ?>
        <p>por favor, rellene sus datos a continuación y haga clic en Enviar.
            Los campos marcados con un asterisco (*) son obligatorios.</p>
    <?php 
    }
    ?>
    <form action = "" method = "post">
        <fieldset>
            <label for="nombreUsuario" <?php 
    validateField("nombreUsuario", $camposPendientes);
    ?>
>Introduce tu nombre * </label>
            <input type = "text" name = "nombreUsuario" id="nombreUsuario" value="<?php 
    setValue("nombreUsuario");
    ?>
">
            <label for="apellidos" <?php 
    validateField("apellidos", $camposPendientes);
    ?>
>y tus apellidos *</label>
            <input type = "text" name = "apellidos" id="apellidos" value="<?php 
    setValue("apellidos");
    ?>
" ><br><br>
            <label for="tipoMusica">¿Qué tipo de música te gusta escuchar?</label>
            <select name="tipoMusica[]" id="tipoMusica" size="4" multiple="multiple">
                <option value="Rock"<?php 
    setSelected("tipoMusica", "Rock");
    ?>
>Rock </option>
                <option value="Pop"<?php 
    setSelected("tipoMusica", "Pop");
    ?>
>Pop </option>
                <option value="Regee"<?php 
    setSelected("tipoMusica", "Regee");
    ?>
>Regee </option>
                <option value="Clásica"<?php 
    setSelected("tipoMusica", "Clásica");
    ?>
>Clásica </option>
            </select><br><br>
            ¿Que tipo de libros lees? <br>
            <label for="novelaNegra">Novela Negra</label>
            <input type="checkbox" name="tipoLibros[]" id="novelaNegra"
                   value="Novela Negra"<?php 
    setChecked("tipoLibros", "Novela Negra");
    ?>
><br>
            <label for="cienciaFiccion">Ciencia Ficción</label>
            <input type="checkbox" name="tipoLibros[]" id="cienciaFiccion"
                   value="Ciencia Ficción" <?php 
    setChecked("tipoLibros", "Ciencia Ficción");
    ?>
><br>
            <label for="fantasia">Fantasía</label>
            <input type="checkbox" name="tipoLibros[]" id="fantasia" value="Fantasía" <?php 
    setChecked("tipoLibros", "Fantasía");
    ?>
><br><br>
            <input type = "submit" name="enviar" value="Enviar">
        </fieldset>
    </form>
    <?php 
    pie();
}
开发者ID:cancelajavi,项目名称:2-DAW,代码行数:76,代码来源:funciones.php

示例12: conectaDb

 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Affero General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Affero General Public License for more details.
 *
 *  You should have received a copy of the GNU Affero General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
require_once "agenda.php";
$db = conectaDb();
cabecera("Buscar contacto", MENU_VOLVER);
$nombre = recoger("nombre");
$apellidos = recoger("apellidos");
$consulta = "SELECT * FROM {$dbTablaAgenda}\r\n    WHERE nombre LIKE :nombre\r\n    AND apellidos LIKE :apellidos\r\n    AND usuario like '{$usuario}'\r\n    ";
$result = $db->prepare($consulta);
$result->execute(array(":nombre" => "%{$nombre}%", ":apellidos" => "%{$apellidos}%"));
print "    <div style=\"text-align: center\"><h3>Registros encontrados:</h3></div>\n";
?>
<div class="col-md-12" >
          <table class="table table-striped" style="width: 40%; margin: 0 auto; text-align: center">
            <thead> 
                <tr>
                <th style="text-align: center">Nombre</th>
                <th style="text-align: center">Apellidos</th>
                <th style="text-align: center">Telefono</th>
                <th style="text-align: center">Correo</th>
开发者ID:JoanJSimpson,项目名称:DesarrolloInterfaces,代码行数:31,代码来源:buscar2.php

示例13: session_start

require_once 'html/pie.php';
require_once 'html/nav.php';
require_once 'html/tabla.php';
require_once 'clases/Alumno.php';
require_once 'clases/Asignatura.php';
require_once 'clases/Matricula.php';
require_once 'clases/TablaNotas.php';
require_once 'procesos/cagar_datos.php';
//SESIÓN
session_start();
if (!isset($_SESSION["tablaNotas"])) {
    $_SESSION["tablaNotas"] = new TablaNotas(array(), array(), array());
}
// TablaNotas($alumnos=array(), $asignaturas=array(), $matriculas=array())
//GENERADORES DE CONTENIDO HTML
echo cabecera("GESTIÓN DE NOTAS", "css/estilos.css");
echo nav(array("Nuevo Alumno" => "nuevo_alumno.php", "Nueva Asignatura" => "nueva_asignatura.php"));
echo cargarDatos($_SESSION["tablaNotas"]);
echo tabla($_SESSION["tablaNotas"]);
echo pie();
?>







<?php 
/*
//TESTEO
开发者ID:jlalovi,项目名称:Ejercicio_gestion_notas,代码行数:31,代码来源:gestion_notas.php

示例14: header

require_once "includes/htmlhelper.php";
require_once "includes/bibliohelper.php";
//Si tenemos sesión, estamos registrados
//y vamos a la página principal
//Lo mismo habría que hacer algún tipo más de comprobación
if (empty($_SESSION['username'])) {
    header('Location: logout.php');
}
if (empty($_SESSION['bibliokey'])) {
    header('Location: bibliochoose.php');
}
if (empty($_REQUEST['searchtext'])) {
    header('Location: main.php');
}
starthtml(1, rawurlencode($_REQUEST['searchtext']));
cabecera(true);
echo <<<FIN
  <h2>Añade los libros a tu lista o ve a buscarlos</h2>
  <div id='searchlist'><img src='img/progress.gif'/>Cargando resultados...</div>
  <div class='line'></div>
  <div class="space"><br clear="all"/></div>
  <h3>¿Quieres buscar más libros?</h3>
  <form action="bibliosearch.php">
    <input type="text" placeholder="Busca el libro por autor, título, editorial, isbn..." name="searchtext"/>
    <input class="button blue" type="submit" value="buscar"/>
    <br/>
    <input class="button white flright" style="margin-right:7px;" type="submit" value="volver"/>
  </form>
  <div class="space"><br clear="all"></div>
FIN;
endhtml();
开发者ID:juanalonso,项目名称:abrelibros,代码行数:31,代码来源:bibliosearch.php

示例15: session_start

<?php

// Librer�as
require_once '../librerias/Html.php';
require_once '../librerias/navegacion_sesion.php';
require_once '../librerias/MySQLDataBase.php';
require_once '../librerias/BBDDMuebleBBB.php';
require_once '../html/cabecera.php';
require_once '../html/encabezado.php';
require_once '../html/nav.php';
require_once '../html/pie.php';
require_once '../html/sesion_carrito.php';
// Inicio sesi�n
session_start();
//Inicializo la base de datos muebleBBB
$BBDD = new MySQLDataBase("mueblebbb");
$MuebleBBB = new BBDDMuebleBBB($BBDD);
/*******************************************
	 GENERO EL HTML DE LA P�GINA AVISO_LEGAL.PHP
	 *******************************************/
echo cabecera("MUEBLEBBB - Aviso Legal", "../css/estilos.css", "../js/libreria.js");
echo encabezadoIndex();
navegacion_sesion($_POST, $MuebleBBB);
echo Html::p("Aqu� va el cuerpo de la p�gina");
echo pie();
开发者ID:jlalovi,项目名称:Proyecto-muebleBBB,代码行数:25,代码来源:aviso_legal.php


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