21 lines
485 B
PHP
21 lines
485 B
PHP
|
<?php
|
||
|
//General Config File:
|
||
|
require_once('../assets/php/config.php');
|
||
|
|
||
|
//Contact form:
|
||
|
require_once('includes/formContact.php');
|
||
|
$form = new FormContact();
|
||
|
$htmlForm = $form->gestiona();
|
||
|
|
||
|
//Specific page content:
|
||
|
$section = '<!-- Contact Form -->
|
||
|
<section id="formulario">
|
||
|
<h4>Formulario</h4>
|
||
|
'.$htmlForm.'
|
||
|
</section>
|
||
|
';
|
||
|
|
||
|
//General page content:
|
||
|
require RAIZ_APP.'/HTMLtemplate.php';
|
||
|
?>
|