2014-10-28 15:26:41 +00:00
|
|
|
<?php
|
|
|
|
session_start();
|
2015-07-11 17:39:07 +00:00
|
|
|
///ini_set('display_errors', 'On');
|
2014-10-28 15:26:41 +00:00
|
|
|
require ('xajax/xajax.inc.php');
|
|
|
|
$xajax = new xajax();
|
|
|
|
require ('funciones/funciones.php');
|
2015-07-10 23:38:47 +00:00
|
|
|
require ("funciones/conex.php");
|
2014-10-28 15:26:41 +00:00
|
|
|
|
|
|
|
$datos[id]=$_REQUEST[id];
|
|
|
|
$datos[identificador]=$_REQUEST[identificador];
|
|
|
|
$datos[dato]=$_REQUEST[dato];
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
|
|
|
|
echo json($datos);
|
|
|
|
|
2015-07-11 17:39:07 +00:00
|
|
|
?>
|