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