On a codeigniter installation, I am trying to use the inbuilt $this->input->post(\'some_data\') function, however $this->input->post()
$this->input->post(\'some_data\')
$this->input->post()
Change your form action,
From this:
Into this:
Basically, you just need to add "index.php" after your base_url():
action="http://www.yourdomain.com/index.php/yourprocess"