-
Notifications
You must be signed in to change notification settings - Fork 0
/
adresweergave.php
36 lines (32 loc) · 1.12 KB
/
adresweergave.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
function adres_weergeven($adres_id)
{
$db = connect_to_db();
$sql = $db->prepare("SELECT straat, huisnummer, toevoeging, postcode, plaats FROM Adressen WHERE id = ? LIMIT 1");
$sql->bind_param('i', $adres_id);
$sql->execute();
$sql->bind_result($straat, $huisnummer, $toevoeging, $postcode, $plaats);
$sql->fetch();
$sql->free_result();
$db->close();
return "<div class=\"adres\">
$straat $huisnummer $toevoeging<br />
$postcode $plaats</br>
</div>";
}
function adres_select($gebruiker_id)
{
$db = connect_to_db();
$sql = $db->prepare("SELECT adres_id FROM AdresGebruiker WHERE gebruiker_id = ?");
$sql->bind_param('i', $gebruiker_id);
$sql->execute();
$sql->bind_result($adres_id);
$html = "";
while ($sql->fetch())
{
$html .= "<input type=\"radio\" name=\"adres\" value=\"$adres_id\"/>" .
adres_weergeven($adres_id);
}
return $html;
}
?>