flashdata.
, , , flashdata . . .
:
( - , flashdata , , , ...):
:
if (!$this->cart->contents())
{
$this->data['message'] = 'Your cart is empty!';
}
$this->load->view('templates/header', $this->data);
$this->load->view('bookings', $this->data);
$this->load->view('templates/footer');
:
<div id="infoMessage"><?php echo $message;?></div>
flashdatah2 >
, flashdata, :
:
if (!$this->cart->contents())
{
$this->session->set_flashdata('message', 'Your cart is empty!');
}
redirect('/your_page');
:
<div id="infoMessage"><?php echo $this->session->flashdata('message');?></div>
, - - , , , redirect('/your_page');, URL $this->load->helper('url');. HTTP-, PHP header. .
$this->session->keep_flashdata('message'); .
, , : $this->load->library('session'); ( , , .)
, , , , flashdata, , , , .
, , , .