PDA

View Full Version : SOLVED print_input_row as radio bottons in cp ? SOLVED


Vaupell
02-23-2009, 09:18 PM
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/wiki/articles/print_input_select_row

--------------- Added 1235432477 at 1235432477 ---------------

solved using wrong function :p this one works.

print_radio_row('agree', 'inputname', array( 'yes' => 'Yes', 'no' => 'No' ));

Dismounted
02-24-2009, 04:14 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=83122" target="_blank">Create pages for the AdminCP</a>

Vaupell
02-24-2009, 05:18 PM
Create pages for the AdminCP (https://vborg.vbsupport.ru/showthread.php?t=83122)

Thank you!! really needed this one.. :up: