Welcome Guest, Not a member yet? Register   Sign In
How to pass data from a view to a controller?
#8

[eluser]danmontgomery[/eluser]
[quote author="theciman" date="1266277585"]Here is the html code
<form action="http://ccc.ccc.com/dd/index.php/updateprojects/update_project" method="post">
<input type="hidden" name="name" value="ProjectID" />
<input type="hidden" name="id" value="ProjectID" />
<input type="hidden" name="value" value="5" />

As we can see the value is passed but when I try to print the value in the form I get nothing. When I make the form viewable, that everything works fine. Any ideas?[/quote]

You don't seem to have a very solid grasp on how HTML forms work... You have 3 hidden inputs here, none of them are "ProjectID" (what you're trying to access with $this->input->post("ProjectID"))

I think what you want is:
Code:
form_hidden("ProjectID", $projectID);

Which will produce:
Code:
<input type="hidden" name="ProjectID" value="5"/>

And can be accessed with:

Code:
$this->input->post("ProjectID"); // 5


Messages In This Thread
How to pass data from a view to a controller? - by El Forum - 02-12-2010, 10:17 AM
How to pass data from a view to a controller? - by El Forum - 02-12-2010, 10:20 AM
How to pass data from a view to a controller? - by El Forum - 02-12-2010, 10:37 AM
How to pass data from a view to a controller? - by El Forum - 02-12-2010, 11:46 AM
How to pass data from a view to a controller? - by El Forum - 02-12-2010, 11:52 AM
How to pass data from a view to a controller? - by El Forum - 02-12-2010, 12:09 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 11:46 AM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 11:59 AM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 12:22 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 12:35 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 12:37 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 01:05 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 01:24 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 01:34 PM
How to pass data from a view to a controller? - by El Forum - 02-15-2010, 01:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB