You are here: C97net • 5.04 HTML Functions
Create a simple tickbox.
function create_tickbox_form ($name, $string = '', $toggle = 0)
Create a simple tickbox, it's different from create_checkbox_form (), as this is easier to call.
$name = field name.
$string = message to display.
$toggle = set true to display the check box as checked.
Example 1
<?php
require './includes/user_init.php';
echo create_tickbox_form ('gotit', 'I Understand');
?>
There is no comment. Why not be the first?