Horje
php routing Code Example
php routing
<?php

$request = $_SERVER['REQUEST_URI'];

switch ($request) {
    case '/' :
        require __DIR__ . '/views/index.php';
        break;
    case '' :
        require __DIR__ . '/views/index.php';
        break;
    case '/about' :
        require __DIR__ . '/views/about.php';
        break;
    default:
        http_response_code(404);
        require __DIR__ . '/views/404.php';
        break;
}




Php

Related
php echo arry Code Example php echo arry Code Example
eliminar ultimo caracter string php Code Example eliminar ultimo caracter string php Code Example
simple localhost php Code Example simple localhost php Code Example
php simple router script Code Example php simple router script Code Example
get type of variable php Code Example get type of variable php Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8