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
/
src
/
list2.php
/
/
<?php if (!isset($_SESSION)) { session_start(); require_once 'lang.php'; } ?> <!doctype html> <html lang="en"> <head> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-1E36PCHGC7"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-1E36PCHGC7'); </script> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Die Liste</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.3/css/jquery.dataTables.css"> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.js"></script> <link rel="stylesheet" href="./../css/menublack.css"> <link rel="stylesheet" href="./../css/site.css"> <script src="./../js/site.js"></script> </head> <body> <div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column"> <?php require_once 'menu.php'; require_once 'DAO/DBConnection.php'; require_once 'DAO/settings.config.php'; require_once 'DAO/suspect.php'; $database = new DBConnection($config); $suspectsObj = new Suspect($database); $suspectsCount = $suspectsObj->getTotalSuspects(); ?> </div> <div class="container"> <div class="row"> <div class="col"> <table id="table" class="display" style="width:100%"> <thead> <tr> <th>Vorname</th> <th>Nachname</th> <th>Titel</th> <th>Beruf</th> <th>Strasse</th> <th>PLZ</th> <th>Ort</th> <th>Tel-Nr</th> <th>Kanton</th> <th>Status</th> </tr> </thead> </table> </div> </div> </div> <script> $(document).ready(function() { $('#table').DataTable( { ajax: 'server_processing.php', method: "POST", "lengthMenu": [ 10, 25, 50, 100, 500 ], "processing": true, "serverSide": true, "dataSrc":"data", "columnDefs": [{ "targets": [1], "name":"Vorname", "visible": true, "searchable": true, "orderable": true }, { "targets": [0], "name":"Nachname", "visible": true, "searchable": true, "orderable": true }, { "targets": [2], "visible": true, "searchable": true, "orderable": true }, { "targets": [3], "visible": true, "searchable": true, "orderable": true }, { "targets": [4], "visible": true, "searchable": true, "orderable": true }, { "targets": [5], "visible": true, "searchable": true, "orderable": true }, { "targets": [6], "visible": true, "searchable": true, "orderable": true }, { "targets": [7], "visible": true, "searchable": true, "orderable": true }, { "targets": [8], "visible": true, "searchable": true, "orderable": true }, { "targets": [9], "visible": true, "searchable": false, "orderable": true }], columns: [ { data: 'Vorname', "defaultContent": "" }, { data: 'Nachname', "defaultContent": "" }, { data: 'Titel', "defaultContent": "" }, { data: 'Beruf' , "defaultContent": ""}, { data: 'Strasse' , "defaultContent": ""}, { data: 'PLZ' , "defaultContent": ""}, { data: 'Ort' , "defaultContent": ""}, { data: 'Tel-Nr' , "defaultContent": ""}, { data: 'Kanton' , "defaultContent": ""}, { data: 'Status' , "defaultContent": 0 }, ] }); }); </script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"> </script> </body> </html>
/home/wirbesti/nuernberg2punkt0.ch/src/list2.php