uawdijnntqw1x1x1
IP : 216.73.216.39
Hostname : diefsweb003.fsit.ch
Kernel : Linux diefsweb003.fsit.ch 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
wirbesti
/
nuernberg2punkt0.ch
/
test
/
..
/
src
/
server_processing.php
/
/
<?php /* * DataTables example server-side processing script. * * Please note that this script is intentionally extremely simple to show how * server-side processing can be implemented, and probably shouldn't be used as * the basis for a large complex system. It is suitable for simple use cases as * for learning. * * See http://datatables.net/usage/server-side for full details on the server- * side processing requirements of DataTables. * * @license MIT - http://datatables.net/license_mit */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Easy set variables */ // DB table to use $table = 'suspects'; // Table's primary key $primaryKey = 'Id'; // Array of database columns which should be read and sent back to DataTables. // The `db` parameter represents the column name in the database, while the `dt` // parameter represents the DataTables column identifier. In this case simple // indexes $columns = array( array( 'db' => 'Nachname', 'dt' => 'Nachname' ), array( 'db' => 'Vorname', 'dt' => 'Vorname', ), array( 'db' => 'Titel', 'dt' => 'Titel', ), array( 'db' => 'Beruf', 'dt' => 'Beruf' ), array( 'db' => 'Strasse', 'dt' => 'Strasse', ), array( 'db' => 'PLZ', 'dt' => 'PLZ', ), array( 'db' => 'Ort', 'dt' => 'Ort', ), array( 'db' => 'Tel-Nr', 'dt' => 'Tel-Nr', ), array( 'db' => 'Kanton', 'dt' => 'Kanton', ), array( 'db' => 'Status', 'dt' => 'Status' ), ); require_once "DAO/settings.config.php"; // SQL server connection information $sql_details = array( 'user' => $config["username"], 'pass' => $config["password"], 'db' => $config["dbname"], 'host' => $config["host"], 'charset' => 'utf8' ); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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) );
/home/wirbesti/nuernberg2punkt0.ch/test/../src/server_processing.php