Welcome Guest, Not a member yet? Register   Sign In
Do YOU use CodeIgniter's form helpers?
#1

[eluser]Calvin Froedge[/eluser]
The form helpers seem very strange to me. Namely, I'm not sure what the point of using PHP to generate simple inputs is. Also, is there a way to get the form helpers to prepopulate database values to their fields ONLY when no data is present in the post array? Right now I'm using an array to generate inputs:

$coupon_name = array(
'name' => 'coupon_name',
'id' => 'coupon_name',
'class'=> 'text',
'value' => set_value('coupon_name'),
'maxlength' => 30,
'size' => 30,
);

And then...

echo form_label($this->lang->line('coupons_form-add-coupon-label-coupon-name'), 'coupon_name');
echo form_input($coupon_name);

Why is this better than (this code not tested yet...just example)...

<label for="coupon_name">&lt;?php echo $this->lang->line('coupons_form-add-coupon-label-coupon-name');?&gt;
&lt;input type=text" class="text" name="coupon_name" value="
&lt;?php if (isset($form_values-&gt;coupon_name) && set_value('coupon_name') == ''){ echo $form_values->coupon_name; }else{ set_value('coupon_name')} ?&gt; />

Maybe there is some benefit of form helpers that I'm missing?


Messages In This Thread
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 09:43 AM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 09:50 AM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 10:58 AM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 12:01 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 02:03 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 04:08 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 04:22 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 04:44 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 05:22 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 05:24 PM
Do YOU use CodeIgniter's form helpers? - by El Forum - 02-16-2011, 05:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB