Welcome Guest, Not a member yet? Register   Sign In
how to get all post data
#2

[eluser]pickupman[/eluser]
You may find this command helpful
Code:
$this->output->enable_profiler(TRUE);

This will output every query, $_REQUEST variable, memory, time, uri. Very helpful for developing. You can using something like
Code:
$this->input->post('field_name');
//or
foreach($this->input->post() as $key => $val)
{
  echo "<p>Key: ".$key. " Value:" . $val . "</p>\n";
}


Messages In This Thread
how to get all post data - by El Forum - 08-05-2010, 09:08 AM
how to get all post data - by El Forum - 08-05-2010, 11:34 AM
how to get all post data - by El Forum - 08-06-2010, 01:17 AM
how to get all post data - by El Forum - 08-06-2010, 01:59 AM
how to get all post data - by El Forum - 08-06-2010, 02:14 AM
how to get all post data - by El Forum - 01-29-2012, 05:13 AM
how to get all post data - by El Forum - 01-29-2012, 08:06 AM
how to get all post data - by El Forum - 01-29-2012, 10:42 AM
how to get all post data - by El Forum - 09-15-2012, 08:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB