summaryrefslogtreecommitdiff
path: root/www-ssl/faq.php
blob: af52ef21115db798dca30112cddda69ce71c6e22 (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 ("../../27c3/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 ("../../27c3/includes/footer.php");
?>