PDA

View Full Version : print_select_row()


sabret00the
03-01-2005, 04:49 PM
the admincp really aint my thing, what's wrong with this?
print_select_row('<b> How Would You Rate This Application: </b>', 'staff_rating', 01, 02 03, 04, 05, 06, 07, 08, 09, 10);


heh i have no idea how it works :blush:

Dean C
03-01-2005, 05:05 PM
Wow that's definately not how it works ;)


$title = 'Some field';
$fieldname = 'fieldid';
$options = array('omg', 'what', 'are', 'you', 'doing');
$selected = 'you';
print_select_row($title, $fieldname, $options, $selected);


That should explain it for you :)

sabret00the
03-01-2005, 05:24 PM
Wow that's definately not how it works
:blush: thanks dean.

Xenon
03-01-2005, 06:42 PM
nice options Dean ;)