-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsehirsec.php
More file actions
44 lines (38 loc) · 814 Bytes
/
sehirsec.php
File metadata and controls
44 lines (38 loc) · 814 Bytes
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
<?php
include 'fonksiyonlar.php';
foreach (havaDurumu($_POST['id']) as $key => $value) {
?>
<div class="col-md-2">
<div class="card mb-4 shadow-sm">
<div class="card-header">
<?=$key ?>
</div>
<div class="card-body">
<p class="card-text">
<table class="table">
<tr>
<th>Saat</th>
<th>#</th>
<th>Sıcaklık</th>
<th>Hız</th>
</tr>
<?php
foreach ($value as $key => $val) {
?>
<tr>
<td><?=$key ?></td>
<td class="p-0"><img src="iconlar/<?=$val['icon']; ?>.png" alt=""></td>
<td><?=$val['sicaklik']; ?></td>
<td><?=$val['hiz']; ?></td>
</tr>
<?php
}
?>
</table>
</p>
</div>
</div>
</div>
<?php
}
?>