“redirigir nuevamente en codeigniter” Código de respuesta

redirigir en 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

redirigir nuevamente en 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

Respuestas similares a “redirigir nuevamente en codeigniter”

Preguntas similares a “redirigir nuevamente en codeigniter”

Más respuestas relacionadas con “redirigir nuevamente en codeigniter” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código