You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
PHTML
22 lines
579 B
PHTML
14 years ago
|
<?php
|
||
|
function guest_faq() {
|
||
|
$html = "";
|
||
|
$faqs = sql_select("SELECT * FROM `FAQ`");
|
||
|
foreach ($faqs as $faq)
|
||
|
if ($faq['Antwort'] != "") {
|
||
|
list ($frage_de, $frage_en) = explode('<br />', $faq['Frage']);
|
||
|
list ($antwort_de, $antwort_en) = explode('<br />', $faq['Antwort']);
|
||
|
$html .= "<dl>";
|
||
|
if ($_SESSION['Sprache'] == "DE") {
|
||
|
$html .= "<dt>" . $frage_de . "</dt>";
|
||
|
$html .= "<dd>" . $antwort_de . "</dd>";
|
||
|
} else {
|
||
|
$html .= "<dt>" . $frage_en . "</dt>";
|
||
|
$html .= "<dd>" . $antwort_en . "</dd>";
|
||
|
}
|
||
|
$html .= "</dl>";
|
||
|
}
|
||
|
return $html;
|
||
|
}
|
||
|
?>
|