You are here: C97net • 5.04 HTML Functions
Create a radio list form field
function create_radio_form ($radio_name, $source, $selected_value = '',
$mode = 'h', $col = 1)
With this function you can create a radio form field.
$radio_name = form field name.
$source = array of selection list.
$selected_value = selected value of the list (optional).
$mode = enter:
$col = number of columns for the list. Default 1.
Example 1
<?php
require './includes/user_init.php';
$src = array (1 => 'one', 2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five');
echo 'Please select: ';
echo create_radio_form ('number', $src, 3);
?>
There is no comment. Why not be the first?