forked from qwerty/milfs
24 lines
645 B
PHP
24 lines
645 B
PHP
<?php
|
|
session_start();
|
|
//ini_set('display_errors', 'On');
|
|
|
|
require ('xajax/xajax.inc.php');
|
|
$xajax = new xajax();
|
|
require ('funciones/funciones.php');
|
|
require ('funciones/convert.php');
|
|
require ("includes/markdown.php");
|
|
require ("funciones/conex.php");
|
|
$datos['id']=$_REQUEST['id'];
|
|
$datos['identificador']=$_REQUEST['identificador'];
|
|
$datos['dato']=$_REQUEST['dato'];
|
|
$datos['inicio']=$_REQUEST['inicio'];
|
|
$datos['fin']=$_REQUEST['fin'];
|
|
$datos['tipo']=$_REQUEST['tipo'];
|
|
if(isset($_REQUEST['debug'])) {ini_set('display_errors', 'On');
|
|
}
|
|
header('Content-Type: application/json');
|
|
//echo "hola /// $_REQUEST[id] // " ;
|
|
echo json($datos);
|
|
|
|
?>
|