Voting

: one plus six?
(Example: nine)

The Note You're Voting On

Jakob B.
19 years ago
<?php
function redirect($filename) {
if (!
headers_sent())
header('Location: '.$filename);
else {
echo
'<script type="text/javascript">';
echo
'window.location.href="'.$filename.'";';
echo
'</script>';
echo
'<noscript>';
echo
'<meta http-equiv="refresh" content="0;url='.$filename.'" />';
echo
'</noscript>';
}
}
redirect('http://www.google.com');
?>

<< Back to user notes page

To Top