私はこのphpコードを持っています
<div id="offers-menu">
<?php
function custom_get_categories_options($rootid = 0,$selected = false,$ident = 0) {
$db = Bux::getDbInstance();
$q = $db->query("SELECT * FROM ".clix_offers::$table['categories']." WHERE parent_id = ".(int)$rootid);
$str = '';
$ident++;
while($row = $db->fetchAll($q)) {
$str .= '<li '.(($_GET['cat_id'] == $row['id']) ? ' class="selected"':'' ).' ><a href="?cat_id='.$row['id'].'">'.$row['name'].'</a>';
$str .= custom_get_categories_options($row['id'],$selected,$ident);
$str .= '</li>';
}
if($str != "") return $ident>0?"<ol>{$str}</ol>":"{$str}";
}
?>
<ul>
<li <?php echo (!isset($_GET['cat_id']) || $_GET['cat_id'] == "all")?' class="selected" ':'';?>><a href="?cat_id=all">All Admin Offers</a></li>
<?=custom_get_categories_options();?>
</ul>
</div>
出力はそのようになります
このメニューに HTML select タグを使用したい
何かのようなもの
<select>
<option value="1">Advertisers</option>
<option value="2" selected="selected">All Admin Offers</option>
<option value="3">CPC/CPM</option>
<option value="4">ect...</option>
</select>
自分ではうまくできなかった
誰か助けてくれませんか?