Redirection
Redirection
- Sometimes useful to direct browser to another URL
- Use redirect() instead of header()
- redirect('http://somewhere.else/');
$wday = (localtime())[6];if ($wday == 0) { print redirect('/closed_sunday.html'); } else { print header()...