How to posr these values to my model?
- by udaya
Hi
I have the variables like this how can i parse these variables to my model page
currently the variable is in my controller
echo $d['mday'].'-'.$d['mon'].'-'.$d['year']."\n";
I have to pass the value s to my model
Iam trying like this but it didnt work
$res['ApproveLeave'] = $this->hostelmodel->putLeave($d);
How can i do that?