html_options is possible to do that ?
I have this PHP Code:
$sql = $db->Execute("SELECT IDC, CNombre FROM os_catproductos ORDER BY IDC ASC");
$arrCat = array();
while ( $categorias = $sql->fetchRow() ) {
$arrCat[] = $categorias;
}
$tpl->assign('catArr', $arrCat);
Then I need to build an SELECT working with catArr values. I try this in template:
<select id="arrCatSELECT" id="arrCatSELECT" size="1" onchange="javascript:document.location.href='index .php?cPath={$catArr.IDC}';">{html_options values={$catArr.IDC} output=$catArr.ANombre}</select>
But it not works. Any ?
--
ReynierPM
4to. Ing. Informática
Linux User: #310201
El programador superhéroe aprende de compartir sus conocimientos. Es el referente de sus compañeros. Todo el mundo va a preguntarle y él, secretamente, lo fomenta porque es así como adquiere su legendaria sabiduría: escuchando ayudando a los demás...
|