forked from qwerty/milfs
88ac5ed60c
comentar al linea de debugging
17 lines
355 B
PHP
17 lines
355 B
PHP
<?php
|
|
session_start();
|
|
///ini_set('display_errors', 'On');
|
|
require ('xajax/xajax.inc.php');
|
|
$xajax = new xajax();
|
|
require ('funciones/funciones.php');
|
|
require ("funciones/conex.php");
|
|
|
|
$datos[id]=$_REQUEST[id];
|
|
$datos[identificador]=$_REQUEST[identificador];
|
|
$datos[dato]=$_REQUEST[dato];
|
|
header('Content-Type: application/json');
|
|
|
|
echo json($datos);
|
|
|
|
?>
|