Welcome Guest, Not a member yet? Register   Sign In
problem with form data
#1

(This post was last modified: 04-11-2023, 07:51 AM by anuragk.)

i am trying to get data on Controller from view but not getting anything, tried searching on google and changing codes but nothing works.

Controller

Quote:public function appointmentForm()
{
helper('form');
$rules = [
'rulescheck' => 'required',
'name' => 'required',
];

if(!$this->validate($rules))
{
return $this->rules();
}
else
{
echo 'validation good';
}
}

no matter what only if get called

View

Quote:<?= validation_list_errors() ?>
  <form action="<?=base_url();?>appointment/" method="post" name="rulesForm">
  <?= csrf_field() ?>
  <div class="form-group mt-3">
  <input type="text" name="name" />
  <input style="height: 14px;" type="checkbox" name="rulescheck" id="rulescheck" required/>
  </div>
  <div class="text-center"><button type="submit" name="rulesSubmit" id="rulesSubmit">Submit</button></div>
  </form>

Route
Quote:$routes->get('appointment', 'Appointment::appointmentForm');


if i try to get the value using this method $post = $this->request->getPost();
this does not work

if i change the route to $routes->post('appointment', 'Appointment::appointmentForm');
I am getting Class and Method error and view is not loading.


I am not getting data on the controller.
Reply


Messages In This Thread
problem with form data - by anuragk - 04-11-2023, 07:50 AM
RE: problem with form data - by gosocial2 - 04-11-2023, 12:59 PM
RE: problem with form data - by anuragk - 04-11-2023, 11:21 PM
RE: problem with form data - by kenjis - 04-11-2023, 11:51 PM
RE: problem with form data - by anuragk - 04-11-2023, 11:59 PM
RE: problem with form data - by kenjis - 04-12-2023, 12:09 AM
RE: problem with form data - by anuragk - 04-12-2023, 12:36 AM
RE: problem with form data - by kenjis - 04-12-2023, 12:46 AM
RE: problem with form data - by anuragk - 04-12-2023, 12:55 AM
RE: problem with form data - by kenjis - 04-12-2023, 01:01 AM
RE: problem with form data - by anuragk - 04-12-2023, 01:09 AM
RE: problem with form data - by abatrans - 04-13-2023, 12:13 AM
RE: problem with form data - by anuragk - 04-13-2023, 05:12 AM
RE: problem with form data - by kenjis - 04-12-2023, 01:29 AM
RE: problem with form data - by anuragk - 04-12-2023, 02:06 AM
RE: problem with form data - by kenjis - 04-12-2023, 05:35 AM
RE: problem with form data - by anuragk - 04-12-2023, 06:28 AM
RE: problem with form data - by HermyC - 04-12-2023, 12:57 PM
RE: problem with form data - by anuragk - 04-12-2023, 10:55 PM
RE: problem with form data - by InsiteFX - 04-14-2023, 10:42 PM
RE: problem with form data - by kenjis - 04-14-2023, 11:19 PM
RE: problem with form data - by anuragk - 04-18-2023, 07:37 AM



Theme © iAndrew 2016 - Forum software by © MyBB