ruạṛ
<?php /** * Create populate print and delete a list * @todo test editing * @version 0.10 * @author Robert Urquhart <programmer@activatedesign.co.nz> * @package WEP-CMS */ session_start(); require_once $_SERVER['DOCUMENT_ROOT'].'/admin/scripts-includes/universal.php'; require_once $_SERVER['DOCUMENT_ROOT'].'/admin/scripts-includes/display.php'; $connID = connect_to_db(); $message = ''; $l = new options_list(); $d = array('list_name' => 'Test list' , 'list_description' => 'Test script list' ); if(!$l->create($d)) { echo $message; exit; } //else $lid = $l->list_id; $d1 = array( 'option_text' => 'Test item 1' , 'position' => '20' ); $d2 = array( 'option_text' => 'Test item 2' , 'position' => '10' ); if(!$l->new_option($d1) || !$l->new_option($d2)) { echo $message; exit; } //else $l->load_options(true); ?> <select> <?php echo $l->html_select_options(0); ?> </select> <select> <?php echo $l->html_select_text(''); ?> </select> <?php echo $l->html_radio_buttons('test-r'); ?> <?php echo $l->html_checkboxes('test-c'); ?> <ul> <?php echo $l->html_link_list(0); ?> </ul> <?php $l->delete(); echo $message; exit; ?>
cải xoăn