Example #1
0
    email                : mail@infosial.com
 ***************************************************************************/
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
/** @no_class */
ini_set('display_errors', false);
include 'libreria.php';
$__LIB = new funLibreria();
include '../includes/libreria/fun_seguridad.php';
$__SEC = new funSeguridad();
$CLEAN_GET = $__SEC->limpiarGET($_GET);
$CLEAN_POST = $__SEC->limpiarPOST();
?>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Tienda Virtual eStoreQ</title>
<link rel="stylesheet" href="../templates/default/estilos.css" type="text/css">
<link rel="stylesheet" href="estilos.css" type="text/css">
</head>
<body>

<table class="mainTable" cellspacing=0 cellpadding=0 width="90%" height="100%" align="center">
Example #2
0
error_reporting(E_ALL);
ini_set('display_errors', true);
session_name('eStoreQ');
session_start();
if (!isset($_SESSION['user_id'])) {
    include_once 'im_login.php';
    exit;
}
include_once '../includes/libreria/fun_debugger.php';
include_once '../includes/configure_bd.php';
include_once '../includes/libreria/fun_bd.php';
include_once '../includes/libreria/fun_seguridad.php';
include_once 'includes/im_class.upload.php';
$__BD = new funBD();
$__BD->conectaBD();
$__SEC = new funSeguridad();
$CLEAN_GET = $__SEC->limpiarGET($_GET);
if (isset($CLEAN_GET["ref"])) {
    $referencia = $CLEAN_GET["ref"];
} else {
    $referencia = '';
}
if (isset($CLEAN_GET["numFam"])) {
    $numFam = $CLEAN_GET["numFam"];
} else {
    $numFam = 0;
}
include_once 'includes/im_xajax_upload.php';
$ordenSQL = "select piximages, charset from opcionestv";
$result = $__BD->db_query($ordenSQL);
$opciones = $__BD->db_fetch_array($result);