Files
awo-hamburg-intranet/module/intranet/firmeninformationen.inc.php
2026-02-17 14:56:23 +01:00

31 lines
1.8 KiB
PHP

<?php
$pdo = new PDO("mysql:host=".$GLOBALS['myservername'].";dbname=".$GLOBALS['mydb'], $GLOBALS['mylogin'], $GLOBALS['mypass']);
$GLOBALS["pdo_conn"] = $pdo;
function load_mandant() {
$statement_mandant = $GLOBALS["pdo_conn"]->prepare("SELECT * FROM main_mandant");
$statement_mandant->execute();
$res_mandant = $statement_mandant->fetchAll(PDO::FETCH_ASSOC);
foreach ($res_mandant as $key_mandant => $value_mandant) {
echo "<div class='group_container'>";
echo "<div class='img_container'><img class='img-fluid' src='/userdata/intranet/mandant/".$value_mandant['image']."'></div>";
echo "<div class='stats_container'>";
echo "<h5>".$value_mandant['description']."</h5>";
echo "<p>".$value_mandant['address']."</p>";
echo "<p>".$value_mandant['number_central']."</p>";
echo "</div>";
echo "</div>";
}
}
?>
<div class='firmeninformationen'>
<div class="headline">
<h2>Firmeninformationen</h2>
<div class="svg_content">
<svg xmlns="http://www.w3.org/2000/svg" width="14.914" height="14.909" viewBox="0 0 14.914 14.909">
<path id="phone" d="M16.558,18.284h-.1C5.193,17.636,3.593,8.128,3.37,5.227A1.72,1.72,0,0,1,4.952,3.375h3.16A1.147,1.147,0,0,1,9.179,4.1l.871,2.145A1.147,1.147,0,0,1,9.8,7.481L8.576,8.714a5.373,5.373,0,0,0,4.346,4.358l1.244-1.233a1.147,1.147,0,0,1,1.244-.235l2.162.866a1.147,1.147,0,0,1,.706,1.066v3.028a1.72,1.72,0,0,1-1.72,1.72ZM5.09,4.522a.573.573,0,0,0-.573.573v.046c.264,3.395,1.955,11.422,12.007,12a.573.573,0,0,0,.608-.539V13.536L14.97,12.67,13.325,14.3l-.275-.035C8.061,13.644,7.384,8.655,7.384,8.6l-.035-.275L8.978,6.683l-.86-2.161Z" transform="translate(-3.364 -3.375)"></path>
</svg>
</div>
</div>
<?php load_mandant() ?>
</div>