Skip to content
Snippets Groups Projects
Forked from IF3110 / TugasBesar1_2017
7 commits ahead of the upstream repository.
MainController.php 259 B
<?php

class MainController {

    public static function LoginHandler() {
        header("Location: http://dagojek.com/src/view/login.html");
        die();
    }

    public static function DefaultHandler() {
        echo "This is default handler";
    }

}