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.

25 lines
434 B
PHTML

14 years ago
<?php
function guest_faq() {
$html = "";
$faqs = sql_select("SELECT * FROM `FAQ`");
14 years ago
foreach ($faqs as $faq) {
$html .= "<dl>";
if ($_SESSION['Sprache'] == "DE") {
$html .= sprintf(
'<dt>%s</dt> <dd>%s</dd>',
14 years ago
$faq['Frage_de'],
$faq['Antwort_de']
);
14 years ago
} else {
$html .= sprintf(
'<dt>%s</dt> <dd>%s</dd>',
14 years ago
$faq['Frage_en'],
$faq['Antwort_en']
);
14 years ago
}
14 years ago
$html .= "</dl>";
}
14 years ago
return $html;
}
?>