The following is my redirect function
function redirect_to($page = NULL) {
if ($page != NULL) {
header("page: {$page}");
exit;
}
}
now the problem is when I call this function it does not work on some pages... Why ?
Thank you