'employee_id', 'dt' => 0 ), array( 'db' => 'first_name', 'dt' => 1 ), array( 'db' => 'middle_name', 'dt' => 2 ), array( 'db' => 'last_name', 'dt' => 3 ), */ /*array( 'db' => 'start_date', 'dt' => 4, 'formatter' => function( $d, $row ) { return date( 'jS M y', strtotime($d)); } ), array( 'db' => 'salary', 'dt' => 5, 'formatter' => function( $d, $row ) { return '$'.number_format($d); } )*/ // ---------------------------------------------------------------------------------------trial $columns = array( array( 'db' => 'id', 'dt' => 0 ), array( 'db' => 'customer_id', 'dt' => 1 ), array( 'db' => 'mobile_phone_1', 'dt' => 2 ), array( 'db' => 'date_created', 'dt' => 3 ), ); // SQL server connection information $config = parse_ini_file('../../cfg/cfg.ini'); $sql_details = array( 'user' => $config['username'], 'pass' => $config['password'], 'db' => $config['database'], 'host' => $config['host'] ); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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' ); echo json_encode( //SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns ) SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns ) );