ssp.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. /*
  3. * DataTables example server-side processing script.
  4. *
  5. * Please note that this script is intentionally extremely simply to show how
  6. * server-side processing can be implemented, and probably shouldn't be used as
  7. * the basis for a large complex system. It is suitable for simple use cases as
  8. * for learning.
  9. *
  10. * See http://datatables.net/usage/server-side for full details on the server-
  11. * side processing requirements of DataTables.
  12. *
  13. * @license MIT - http://datatables.net/license_mit
  14. */
  15. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  16. * Easy set variables
  17. */
  18. // DB table to use
  19. $table = 'massive';
  20. // Table's primary key
  21. $primaryKey = 'id';
  22. // Array of database columns which should be read and sent back to DataTables.
  23. // The `db` parameter represents the column name in the database, while the `dt`
  24. // parameter represents the DataTables column identifier. In this case simple
  25. // indexes
  26. $columns = array(
  27. array( 'db' => 'id', 'dt' => 0 ),
  28. array( 'db' => 'firstname', 'dt' => 1 ),
  29. array( 'db' => 'surname', 'dt' => 2 ),
  30. array( 'db' => 'zip', 'dt' => 3 ),
  31. array( 'db' => 'country', 'dt' => 4 )
  32. );
  33. // SQL server connection information
  34. $sql_details = array(
  35. 'user' => '',
  36. 'pass' => '',
  37. 'db' => '',
  38. 'host' => ''
  39. );
  40. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  41. * If you just want to use the basic configuration for DataTables with PHP
  42. * server-side, there is no need to edit below this line.
  43. */
  44. require( '../../../../examples/server_side/scripts/ssp.class.php' );
  45. echo json_encode(
  46. SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns )
  47. );