Files
SimpleMVC/app/helpers/url.php
T
bckelleyandbckelley a979c73924 init commit
2024-01-25 09:52:59 -06:00

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);
}