-
Notifications
You must be signed in to change notification settings - Fork 0
/
destek.php
37 lines (29 loc) · 1.1 KB
/
destek.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
<form action="index.php?SK=15" method="post">
<table>
<tr>
<td>
<h1>Sık Sorulan Sorular</h1>
</td>
</tr>
<tr>
<td>
<b>Aklınıza takılan sorularun cevaplarını bu sayfada cevapladık</b>
</td>
</tr>
<tr>
<td> <?php
$SoruSorgusu = $VeritabaniBaglantisi->prepare("SELECT * FROM sorular");
$SoruSorgusu->execute();
$SoruSayisi = $SoruSorgusu->rowCount();
$SoruKayitlari = $SoruSorgusu->fetchAll(PDO::FETCH_ASSOC);
foreach ($SoruKayitlari as $Kayitlar) {
?>
<div>
<div id="<?php echo $Kayitlar["id"]; ?>" onclick="$.SoruIcerigiGoster(<?php echo $Kayitlar["id"]; ?>)"><b> <?php echo $Kayitlar["soru"]; ?> </b></div>
<div class="SorununCevapAlani" style="display: none;" ><?php echo $Kayitlar["cevap"]; ?></div>
</div>
<?php } ?>
</td>
</tr>
</table>
</form>