-
Notifications
You must be signed in to change notification settings - Fork 0
/
detail.php
132 lines (116 loc) · 4.87 KB
/
detail.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
if (empty($_GET['WOID'])) {
die('sorry, you are at a wrong place');
} else {
$sql = "SELECT SUBSTRING_INDEX(omschrijving,' ',30) AS omschrijving,
CONCAT_WS(' ', Vraagprijs, (SELECT Name FROM soortvraagprijs WHERE ID = wo.Vraagprijssoort)) AS VraagPrijs,
(SELECT Name FROM soortobject WHERE wo.SoortObject = SoortObject.ID) AS SoortObject,
(SELECT Name FROM soortwoning WHERE wo.SoortWoning = SoortWoning.Id) as SoortWoning,
(SELECT Name FROM soortbouw WHERE wo.SoortBouw= soortbouw.Id) as SoortBouw,
(SELECT Name FROM typewoning WHERE wo.TypeWoning = TypeWoning.ID) as TypeWoning,
(SELECT NAME FROM status WHERE wo.Status = Status.Id) as Status,
(CASE
WHEN TuinAanwezig <> 0 THEN 'ja'
WHEN TuinAanwezig = 0 THEN 'Nee'
ELSE 'onbekend'
END) as TuinAanwezig,
CONCAT_WS(' ', PC, City) as Address2,
BouwJaar,
TuinOppervlakte,
WoonOppervlakte,
Inhoud,
AantalKamers,
AantalBadkamers,
AantalWoonlagen,
PerceelOppervlakte,
PlaatsingDatum,
Address
FROM wo
WHERE WOID = :woid
";
require_once 'DatabaseConnection.php';
try {
$statement = DatabaseConnection::getConnection()->prepare($sql);
$statement->execute([':woid' => $_GET['WOID']]);
$huis = $statement->fetch(PDO::FETCH_ASSOC);
$huis['WOID'] = $_GET['WOID'];
} catch (PDOException $e) {
echo $e->getMessage();
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Funda</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div id="logo">
<img src="img/funda-logo-hp.gif" id="toplogo" alt="toplogo"/>
</div>
<?php if(empty($_GET['detailsOnly']) || !$_GET['detailsOnly']): ?>
<div id="balk">
<ul>
<li class="active">Woningaanbod</a></li>
<li>Verkoop</li>
<li>NVM Makelaars</li>
<li>Gids</li>
<li>Verhuizen</li>
<li>My Funda</li>
</ul>
</div>
<div id="main">
<div id="adresgegevens">
<div class="head"><?= $huis['Address'] ?></div>
<div class="adres"><?= $huis['Address2'] ?></div>
<div class="prijs"><?= $huis['VraagPrijs'] ?></div>
</div>
<div id="details">
<ul>
<li><a href="detail.php" class="active">Overzicht</a></li>
<li><a href="omschrijving.php?WOID=<?=$huis['WOID']?>" class="licht">Omschrijving</a></li>
<li><a href="detail.php?WOID=<?=$huis['WOID']?>&detailsOnly=true" class="licht">Kenmerken</a></li>
<li><a href="hypotheek.php?WOID=<?=$huis['WOID']?>" class="licht">Hypotheek</a></li>
<li><a href="afspraak.php?WOID=<?=$huis['WOID']?>" class="licht">Afspraak makelaar</a></li>
</ul>
<div id="content"><?= $huis['omschrijving'] ?>...
<a href="omschrijving.php?WOID=<?= $huis['WOID'] ?>">Volledige omschrijving</a>
<?php endif;?>
<table id="kenmerken">
<tr>
<th colspan="2">Kenmerken</th>
</tr>
<?php $kenmerken = [
'VraagPrijs'=>'vraagprijs',
'SoortObject'=>'soort object',
'SoortWoning'=>'soort woning',
'TypeWoning'=>'type woning',
'SoortBouw' =>'soort bouw',
'Address'=>'adres',
'Address2'=>'PC + woonplaats',
'BouwJaar'=>'bouwjaar',
'Status' =>'status',
'TuinAanwezig' => 'tuin aanwezig',
'TuinOppervlakte'=>'tuin oppervlakte',
'WoonOppervlakte' => 'woonoppervlakte',
'Inhoud' => 'inhoud',
'AantalKamers' => 'kamers',
'AantalBadkamers' => 'badkamers',
'AantalWoonlagen'=>'woonlagen',
'PerceelOppervlakte'=>'perceeloppervrlakte',
'PlaatsingDatum' => 'plaatsingsDatum'
];
foreach ($kenmerken as $kenmerk => $value):?>
<tr>
<td class="kop"><?= $value ?></td>
<td><?= $huis[$kenmerk] ?></td>
</tr>
<?php endforeach; ?>
</table >
</div >
</div >
</div >
</body >
</html >