I'm using codeigniter for my project where I have situation to submit two different but one in another. Can I add one form into another form?
So it'll look like this:
<?php echo form_open('controller1');?>
// All form1 stuff here
<?php echo form_open_multipart('controller2')?>
//All form2 stuff here
//Form2 submit button
<?php echo form_close();?>
//Form1 submit button
<?php echo form_close();?>
Will codeigniter allow me to do this? I searched for while for this problem but didn't find for my case. Or is there any another way to do this.
Any help is appreciated.
Regards,
Vaibhav M.