Hello, how are you?
I'm having a big problem in codeigniter that I'm not able to solve,
I have a helper where it works as follows
function forms($a){
for(i=0;i<=$a;i++){
<input type='text' name='forms_$i'>
}
}
I previously used a code to generate the amount of inputs I wanted, but not very well how to get those values in my controller, because I need to get the values received in those forms and put them in the database.
If someone can help me in this part I would appreciate it a lot, either in a way to receive the values or a more practical way.
Thank you all.
Q: The other parts are correct in my code, I just do not know exactly how to get the values in my controllers to put them in the database.