I want to have all FAQ's from one category listed in a box on the frontpage of my support-section (index.php in phpMyFAQ).
I have added the following in index.php:
Code: Select all
"writeThemes" => printThemes($rubrik),
Further I have added the following new section in index.php:
Code: Select all
/* Übergebene Variablen überprüfen */
if (isset($_REQUEST["rubrik"]) && checkIntVar($_REQUEST["rubrik"]) == TRUE) {
$rubrik = $_REQUEST["rubrik"];
}
Not that steady in php I'm afraid..
