first commit

This commit is contained in:
aschwarz
2022-11-28 10:24:23 +01:00
commit 5121fd03d4
3332 changed files with 768541 additions and 0 deletions

24
func_standard_hs.php Executable file
View File

@ -0,0 +1,24 @@
<?php
#require_once("config.inc.php");
function standard_hs($plz){
$db = dbconnect();
$query_hs = $db->query("SELECT hs
FROM bpm_zuordnung_hs
WHERE plz = '$plz'
LIMIT 1");
$row_hs = $query_hs->fetch_array();
if($row_hs['hs'] == ''){
$hochschule = 'NA';
}else{
$hochschule = $row_hs['hs'];
}
return $hochschule;
}
#echo standard_hs(88812);
?>