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

[eluser]Lone[/eluser]
Ill just confirm that we just replaced the Sessions Class file to a 1.5.4 install with no problemos at all.


cinewbie81: I think you perception of how flashdata works might be wrong. As far as I can tell it is best used for a page redirect - here is a quick sample:

1. You have a blog comment form that a user fills out and is submitted and run through a controller function which is then redirected to the viewComments controller function.

Code:
function addComment()
  {
      // save comment to database code here
      $this->session->set_flashdata('msg', 'Comment added');
      redirect('/blog/viewComments/');
  }


2. The viewComments page is then loaded with all of the comments and the message at top

Code:
function viewComments()
  {
      // code to output comments here
      $data['msg'] = $this->session->flashdata('msg');
      $this->load->view('viewComments',$data);
  }

In the View you would then output the message using $msg


Hope this makes sense as its hard to explain without a full code sample :-S


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