1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-12-13 01:08:49 +01:00
DataTables/media/unit_testing/data_sources/param.php

43 lines
832 B
PHP
Raw Normal View History

<?php
if ( isset($_REQUEST['sEcho']) ) {
echo json_encode( array(
'sEcho' => intval( $_REQUEST['sEcho'] ),
'iTotalRecords' => 1,
'iTotalDisplayRecords' => 1,
'aaData' => array(
array(1, 2, 3, 4, 5)
),
'post' => xss( $_POST ),
'get' => xss( $_GET ),
'post_length' => count( array_keys( $_POST ) ),
'get_length' => count( array_keys( $_GET ) )
) );
}
else {
echo json_encode( array(
'aaData' => array(
array(1, 2, 3, 4, 5)
),
'post' => xss( $_POST ),
'get' => xss( $_GET ),
'post_length' => count( array_keys( $_POST ) ),
'get_length' => count( array_keys( $_GET ) )
) );
}
// This script shouldn't be hosted on a public server, but to prevent attacks:
function xss ( $a )
{
$out = array();
foreach ($a as $key => $value) {
$out[ $key ] = htmlentities( $value );
}
return $out;
}