Trying to formulate a yes/no radio botton in CP php
print_input_select_row("select yes or no", 'name', array(0=>'No', 1=>'Yes'));
trying with reference from
http://www.vbulletinprogramming.com/...put_select_row
--------------- Added [DATE]1235432477[/DATE] at [TIME]1235432477[/TIME] ---------------
solved using wrong function

this one works.
print_radio_row('agree', 'inputname', array( 'yes' => 'Yes', 'no' => 'No' ));