2005-09-10 19:25:43 +02:00
|
|
|
<?php
|
|
|
|
$title = "Index";
|
|
|
|
$header = "FAQ";
|
2008-09-10 17:43:25 +02:00
|
|
|
include ("../includes/header.php");
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
$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>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-10 17:43:25 +02:00
|
|
|
include ("../includes/footer.php");
|
2005-09-10 19:25:43 +02:00
|
|
|
?>
|
|
|
|
|