It looks like you're new here. If you want to get involved, click one of these buttons!
$this->form->a_function()
$this->form_builder->a_function()
$this->form_builder->required_text = '* Mandatory fields';
$this->form_builder->form_attrs = array('method' => 'get', 'action' => 'submit');
<form method="get" action="my_processor.php">
Comments
Is the code below correct Lance ?
Action should be a destination url though.
It'll render something like:
<form method="get" action="my_processor.php">
Can use site_url() in there if you want to as well.