29 February 2020

How to Alternative to “header” for re-directs in PHP


Alternative to “header” for re-directs in PHP



function redirect($url)
{
    if (!headers_sent())
    {   
        header('Location: '.$url);
        exit;
        }
    else
        { 
        echo '<script type="text/javascript">';
        echo 'window.location.href="'.$url.'";';
        echo '</script>';
        echo '<noscript>';
        echo '<meta http-equiv="refresh" content="0;url='.$url.'" />';
        echo '</noscript>'; exit;
    }
}

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...