<?php define ('P_S',PATH_SEPARATOR); define ('ROOT',"../"); set_include_path(ROOT .P_S .'Zend' .P_S .ROOT.get_include_path()); require_once ROOT.'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Db'); Zend_Loader::loadClass('Zend_Config_Ini'); Zend_Loader::loadClass('Zend_Page'); $config = new Zend_Config_Ini('../inc/config.php','general'); $db = Zend_Db::factory($config->db->adapter,$config->db->config->toArray()); ?> <? //查询 $select=$db->select(); $select->from("UserGroup","*"); $action_log=$db->fetchAll($select); foreach ($action_log as $arr){ ?> <input type="checkbox" name="usergroup[]" id="usergroup[]" value="<?=$arr['lsh']?>"> <? echo $arr['Name'];?> <? } ?> (编辑:李大同)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|