summaryrefslogtreecommitdiff
path: root/www-ssl/faq.php
blob: 5aeaee54c97f67cb15c841ab0bec38a0aa75f9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$title = "Index";
$header = "FAQ";
include ("../includes/header.php");


$SQL = "SELECT * FROM `FAQ`";
$Erg = mysql_query($SQL, $con);

// anzahl zeilen
$Zeilen  = mysql_num_rows($Erg);

for ($n = 0 ; $n < $Zeilen ; $n++) {
  if (mysql_result($Erg, $n, "Antwort")!="") {
    echo "<p class='question'>".mysql_result($Erg, $n, "Frage")."</p>";
    echo "<p class='answetion'>".mysql_result($Erg, $n, "Antwort")."</p>";
  }
}

include ("../includes/footer.php");
?>