Jump to content

header()


karker

Recommended Posts

$sayi = $_GET['islem']+1;
$url = '24.php?islem='.$sayi.'';

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="1;url='.$url.'" />';
        echo '</noscript>'; exit;
    }
}  

redirect($url);

 

 

Why do you think the routing does not work ??

Link to comment
Share on other sites

It could be one of many things. What exactly is happening? Is your condition true or false? Just posting code and asking why it doesn't work won't get you an answer. What does url have in it? Try echoing it to see it has the value you expect

Link to comment
Share on other sites

it is 24.php everything codes here

 

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="1;url='.$url.'" />';

        echo '</noscript>'; exit;

    }

 

redirect($url);

 

Why do you think the routing does not work ??

Link to comment
Share on other sites

You're going to get answers if you don't provide information.

Use code tags.  You did it in your first post, so stop being lazy and add them in the future.

What is happening?!

 

Just posting code and asking why it doesn't work won't get you an answer.

No surprise there, they have basically been doing this since they joined.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.