CodeIgniter Forums
Form submission not working properly - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Form submission not working properly (/showthread.php?tid=40582)



Form submission not working properly - El Forum - 04-13-2011

[eluser]Unknown[/eluser]
Hi,

I am new to codeigniter. When I am submitting a form, the action uri is not comming properly.

Ex: My form uri is http://localhost/demo/index.php/form/ when I submit it it shows http://localhost/demo/http://localhost/demo/form

Please guide me through this.


Form submission not working properly - El Forum - 04-13-2011

[eluser]Atharva[/eluser]
Can you post your code.


Form submission not working properly - El Forum - 04-13-2011

[eluser]InsiteFX[/eluser]
Code:
<?php
echo form_open('controller/method');

echo form_close();
?>

InsiteFX