Beispiel #1
0
<?php

/**
*     BAHÍA NÚMEROS
* =====================
*
* 06/07/2015 - 13/08/2015
*
* @author      Emanuel Martinez <*****@*****.**>
*
* @license     MIT License: https://github.com/EmanuelM/BahiaNumeros/blob/master/LICENSE
*
* @link        Página proyecto:     http://bahianumeros.com.ar
*              GitHub Repo:         https://github.com/EmanuelM/BahiaNumeros
*
* @version     1.0
*
**/
ini_set('display_errors', false);
require_once 'includes/vista.php';
require_once 'includes/controlador.php';
Vista::header('Contacto', false);
Vista::formulario();
if (isset($_POST['nombre']) && isset($_POST['dropdown']) && isset($_POST['asunto']) && isset($_POST['textarea'])) {
    Controlador::mensaje($_POST['nombre'], $_POST['dropdown'], $_POST['asunto'], $_POST['textarea']);
} else {
}
Vista::footer(false);