ZBlogPHP 文章后台下拉单选多选项、单值存储完整可用代码:

	echo '<div class="laoyu_wang cateEidtor">
			<label>游戏推荐:</label></div>
	  	 ';
        echo '<p style="color: #FF0000;"><label><input type="radio" name="meta_ad5" value="new" ';        	   
        if ($article->Metas->ad5 == 'new'){echo 'checked="checked"';}     		     
        echo '/>&nbsp;新服推荐</label>';     	 	 		 
	    echo '<label>&nbsp;&nbsp;<input type="radio" name="meta_ad5" value="jingpin" ';    	 	  	  
        if ($article->Metas->ad5 == 'jingpin'){echo 'checked="checked"';}      		 			
        echo '/>&nbsp;精品新服</label>';  
        echo '<label>&nbsp;&nbsp;<input type="radio" name="meta_ad5" value="hot" ';    	 	  	  
        if ($article->Metas->ad5 == 'hot'){echo 'checked="checked"';}      		 			
        echo '/>&nbsp;热门推荐</label></p><p></p>';