'first_name', 'dt' => 'first_name' ), array( 'db' => 'last_name', 'dt' => 'last_name' ), array( 'db' => 'position', 'dt' => 'position' ), array( 'db' => 'office', 'dt' => 'office' ), array( 'db' => 'start_date', 'dt' => 'start_date', 'formatter' => function( $d, $row ) { return date( 'jS M y', strtotime($d)); } ), array( 'db' => 'salary', 'dt' => 'salary', 'formatter' => function( $d, $row ) { return '$'.number_format($d); } ) ); $sql_details = array( 'user' => 'root', 'pass' => '', 'db' => 'phoenixc_admin-demo-data', 'host' => 'localhost' ); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * If you just want to use the basic configuration for DataTables with PHP * server-side, there is no need to edit below this line. */ require( 'ssp.class.php' ); // Validate the JSONP to make use it is an okay Javascript function to execute // $jsonp = preg_match('/^[$A-Z_][0-9A-Z_$]*$/i', $_GET['callback']) ? // $_GET['callback'] : // false; // if ( $jsonp ) { // echo $jsonp.'('.json_encode( // SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns ) // ).');'; // } echo json_encode( SSP::simple( $_POST, $sql_details, $table, $primaryKey, $columns) );