mirror of
https://github.com/bckelley/SimpleMVC.git
synced 2026-08-24 03:34:11 -05:00
13 lines
262 B
PHP
13 lines
262 B
PHP
<?php
|
|
/**
|
|
* Redirect Function
|
|
*
|
|
* Redirect the user to a specified page.
|
|
*
|
|
* @param string $page The page to redirect to
|
|
*/
|
|
function redirect($page) {
|
|
// Use the header function to perform the redirection
|
|
header('Location: ' . URL_ROOT . $page);
|
|
}
|