Welcome Guest, Not a member yet? Register   Sign In
Form Validation for Input Radio
#2

(This post was last modified: 01-29-2015, 05:52 AM by FaraonX.)

Hmm on first look... Try this:

PHP Code:
'published' => array(
 
         'name'        => 'product_status',
 
         'id'  => 'product_status',
 
   'value'     => 1,
 
   'checked'   => if($form_value['product_status'] == 1){ TRUE } else { FALSE }
 
 ),
 
 'notpublished' => array(
 
         'name' => 'product_status',
 
         'id' => 'product_status',
 
   'value'     => 0,
    
'checked'   => if($form_value['product_status'] == 0){ TRUE } else { FALSE }
 
 ), 
Reply


Messages In This Thread
Form Validation for Input Radio - by cakka - 01-28-2015, 08:20 PM
RE: Form Validation for Input Radio - by FaraonX - 01-29-2015, 05:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB