Esempio n. 1
0
function OnRequest()
{
    $threads = null;
    if (isset($_GET['search'])) {
        $threads = ModelFacade::SearchThreads($_GET["search"]);
        include_once '/Views/Search.html';
    } else {
        header('Location: Index.php');
    }
}