[eluser]zlatiborac[/eluser]
Thanks for this fast reply...
Well I've read form helper and that area is not the problem (generating the form, customizing...).
Generally what is confusing me in CI are file paths. I'll give you an example.
In "normal" form you have this
Code:
<form action="form.php" method="POST">
and this is simple straightforward - when you press submit button it will call form.php file and then the rest will happen.
When I generate form with CI using this command
Code:
<?php echo form_open('send', 'class="form"');?>
in source code of the page I receive this
Code:
<form action="http://localhost/ci/send" class="form" method="post">
Since I am thinking the "old way" typical for "old school newbie programmer" this represents an sub directory in ci directory (but as I am reading the book I get that I am wrong and that this has nothing to do with subdirs..).
I've tried to add function send in controller that called the form but no success.
I hope that you now understand where I am stuck