Welcome Guest, Not a member yet? Register   Sign In
Prepopulating radio input
#4

[eluser]xwero[/eluser]
a radio button doesn't know the selected attribute. It has the checked attribute. sometimes i'm really clueless Smile

To make it easier on myself i made these functions
Code:
function form_selected($value1,$value2)
{
    return ($value1 == $value2)?' selected="selected"':'';
}

function form_checked($value1,$value2)
{
    return ($value1 == $value2)?' checked="checked"':'';
}


Messages In This Thread
Prepopulating radio input - by El Forum - 09-12-2008, 03:22 AM
Prepopulating radio input - by El Forum - 09-12-2008, 03:43 AM
Prepopulating radio input - by El Forum - 09-12-2008, 03:48 AM
Prepopulating radio input - by El Forum - 09-12-2008, 03:58 AM
Prepopulating radio input - by El Forum - 09-12-2008, 04:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB