id/common/misc.php
2024-07-27 15:07:27 +03:00

18 lines
263 B
PHP

<?php
/**
* Redirects to $url.
*
* @param $url string
*
*/
function location(string $url):void
{
header('Location: '. $url);
exit();
}
function flash(string $text, string $type, array &$flash) {
$flash[] = ['text' => $text, 'type' => $type];
}