Welcome Guest, Not a member yet? Register   Sign In
Displaying dynamic form data
#2

[eluser]ztinger[/eluser]
Can you elaborate??

I'm not sure if i got right the first part of your post.

To display $_POST data you do this in the controller:

Code:
$data['name']= $this->input->post('name');
// this is the same as $data['name'] = $_POST['name'];

//then you pass it to the view:

$this->load->view('your-view-file',$data);

then in your view file:

Code:
Your name is :<?=$name?>


Was that your question?


Messages In This Thread
Displaying dynamic form data - by El Forum - 07-07-2007, 12:36 PM
Displaying dynamic form data - by El Forum - 07-07-2007, 04:11 PM
Displaying dynamic form data - by El Forum - 07-08-2007, 10:07 AM



Theme © iAndrew 2016 - Forum software by © MyBB