Add files via upload

This commit is contained in:
Fernando Méndez
2021-07-02 18:09:23 +02:00
committed by GitHub
parent 2b06f5758e
commit 3811fa2f17
78 changed files with 10728 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<?php
//General Config File:
require_once('../assets/php/config.php');
//Purchase form:
require_once('includes/formPurchase.php');
$form = new FormPurchase();
$formHTML = $form->gestiona();
//Page-specific content:
$section = '<div class="code">
<h2>Completar la Compra</h2><hr />
<!-- Purchase Form -->
'.$formHTML.'
</div>';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>