Welcome Guest, Not a member yet? Register   Sign In
Displaying a message on the page after certain action
#15

[eluser]Derek Allard[/eluser]
if you're settin git and then displaying it in the same load, the flash var doesn't really consider it a new page.

try
Code:
<?php

class Test extends Controller {

    function Test ()
    {
        parent::Controller();    
        $this->load->library('session');
        $this->load->helper('url');
    }
    
    function index()
    {
        $this->session->set_flashdata('msg', 'Record Added Successfully');
        echo 'flash data set.<br>';
        echo anchor('test/page_two', 'next page');
    }
    
    
    function page_two()
    {
        echo '<div id="actionMessage">';
        echo 'the message is ' . $this->session->flashdata('msg');
        echo '</div>';
    }
}
?&gt;


Messages In This Thread
Displaying a message on the page after certain action - by El Forum - 01-07-2008, 07:32 PM
Displaying a message on the page after certain action - by El Forum - 01-07-2008, 08:29 PM
Displaying a message on the page after certain action - by El Forum - 01-07-2008, 08:47 PM
Displaying a message on the page after certain action - by El Forum - 01-07-2008, 09:15 PM
Displaying a message on the page after certain action - by El Forum - 01-07-2008, 09:30 PM
Displaying a message on the page after certain action - by El Forum - 01-07-2008, 10:31 PM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 12:16 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 04:31 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 04:33 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 07:07 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 08:55 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 09:02 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 09:27 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 09:50 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 11:01 AM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 05:57 PM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 07:35 PM
Displaying a message on the page after certain action - by El Forum - 01-08-2008, 07:50 PM
Displaying a message on the page after certain action - by El Forum - 01-14-2008, 02:59 AM
Displaying a message on the page after certain action - by El Forum - 01-14-2008, 05:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB