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
/
unwaehlbar.ch
/
DAO
/
localized.php
/
/
<?php class Localized { private $con; // Database Connection public function __construct(DBConnection $database) { $this->con = $database; return $this->con; } public function getLocalizedTexts($infotype, $language) { $query = "select `aid`,`description` from `localized` where `infotype` = :infotype and `language` = :language order by `description`;"; $getcouncils = $this->con->dbc->prepare($query); $getcouncils->bindParam(':infotype', $infotype); $getcouncils->bindParam(':language', $language); $getcouncils->execute(); $result = $getcouncils->fetchAll(); return $result; } } ?>
/home/wirbesti/unwaehlbar.ch/DAO/localized.php