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
/
pdf
/
..
/
public_html
/
php
/
Canton.php
/
/
<?php class Canton { private $con; // Database Connection public function __construct(DBConnection $database) { $this->con = $database; return $this->con; } public function getCantonbyZip(string $zip) { $query = "SELECT `plz`, `kanton` FROM `nvbjn_zipcanton` z ". "WHERE z.plz = :plz;"; $getcanton = $this->con->dbc->prepare($query); $getcanton->bindParam(':plz', $zip); $getcanton->execute(); $result = $getcanton->fetch(); if ($result) { return $result; } else { echo "Record not found"; } } } ?>
/home/wirbesti/pdf/../public_html/php/Canton.php