“Przekieruj z powrotem w Codeigniter” Kod odpowiedzi

Przekieruj w Codeigniter

//You can use redirect in codeigniter by loading helper 'url'
$this->load->helper('url');

//The redirects functions accepts two parameters to execute the function first is 'Location Url' and second parameter allows the developer to use different HTTP commands to perform the redirect "location" or "refresh".
if (!$user_logged_in)
{
  redirect('/account/login', 'refresh');
}
Ankur

Przekieruj z powrotem w Codeigniter

This should help :
http://www.codeigniter.com/user_guide/libraries/user_agent.html

$this->load->library('user_agent');
if ($this->agent->is_referral()){
    echo $this->agent->referrer();
}

or straight PHP:

redirect($_SERVER['HTTP_REFERER']);
Lokesh003

Odpowiedzi podobne do “Przekieruj z powrotem w Codeigniter”

Pytania podobne do “Przekieruj z powrotem w Codeigniter”

Więcej pokrewnych odpowiedzi na “Przekieruj z powrotem w Codeigniter” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu