Articles → PHP CODEIGNITER → Flashdata In Codeigniter
Flashdata In Codeigniter
Purpose
Example
- Textbox
- Submit button
$this->load->library("session");
if($this->input->post("username"))
{
if($this->input->post("username") == "gyansangrah")
{
$this->session->mark_as_flash('text');
$this->session->set_flashdata("text", $this->input->post("username"));
}
echo $_SESSION['text'];
}
Output
Click to Enlarge
Click to Enlarge