Welcome Guest, Not a member yet? Register   Sign In
POST data missing
#1

[eluser]chubbypama[/eluser]
Hi there. I am trying to figure out why my data is not being posted. My controller cannot access it.
I'm posting a simple example here... my real code is a lot more complex. BUt this little example doesn't work either.
So I figure if I can get this working, the real code should work too.
here's the view:
Code:
<?php echo 'in here'; ?>

<div id="contact_form" class="span12">
<h2>Contact Sys Admin</h2>

  &lt;form method="post" action="http://myserver/myapp/index.php/controllerA/test"&gt;
    &lt;input type="text" id="newVlanID" value="123" /&gt;
    
    <button type="submit">Submit</button>
    &lt;/form&gt;

</div>

and in my controller :
Code:
public function test()
{
    //print_r($this->input->post(NULL, False));
           if ($this->input->post(Null, False)) {
             echo "I am here";
             $form = $this->input->post(Null, True); ## True for XSS-cleaning, which you probably want.
             exit();
           }
           else {
              echo "False";
           }
It was just prints False.
I never get the 123 value ...
Any suggestins? I know the hardcoding of the app path is bad. Just for demo purposes.
Thanks.


Messages In This Thread
POST data missing - by El Forum - 09-06-2012, 12:47 PM
POST data missing - by El Forum - 09-06-2012, 01:08 PM
POST data missing - by El Forum - 09-06-2012, 01:18 PM
POST data missing - by El Forum - 09-06-2012, 01:21 PM



Theme © iAndrew 2016 - Forum software by © MyBB