本文整理汇总了PHP中funciones::obtenerListadoUsosProducto方法的典型用法代码示例。如果您正苦于以下问题:PHP funciones::obtenerListadoUsosProducto方法的具体用法?PHP funciones::obtenerListadoUsosProducto怎么用?PHP funciones::obtenerListadoUsosProducto使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类funciones
的用法示例。
在下文中一共展示了funciones::obtenerListadoUsosProducto方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<label>Tags</label>
<input type="text" name="tags" class="other" maxlength="50" />
<label>Destacado <input type="checkbox" name="destacado" class="other" value="1" /></label>
<label>Recomendado <input type="checkbox" name="recomendado" class="other" value="1" /></label>
<label>Categoria</label>
<select name="idCategoria" style="width: auto;">
<option value="">---</option>
<?php
$dato->obtenerListadoCategoriasProducto();
?>
</select>
<label>Usos</label>
<select multiple id="usosSelect" name="idUso[]" style="width: auto;">
<option value="">---</option>
<?php
$dato->obtenerListadoUsosProducto();
?>
</select>
<label onclick="javascript:$('#divImagenes').slideToggle('slow');" style="cursor: pointer;"><strong>IMAGENES</strong> (Deben tener un tamaño de 280 x 200 px)</label>
<div id="divImagenes" style="display: none;">
<label>Imagen 1</label>
<input type="file" name="imagenes[]" />
<a href="javascript:void(0);" onclick="agregarImagen();">Agregar Imagen</a>
</div>
<label onclick="javascript:$('#divCaracteristicas').slideToggle('slow');" style="cursor: pointer; margin-top: 15px;"><strong>CARACTERISTICAS</strong></label>
<div id="divCaracteristicas" style="display: none;">
<fieldset>
<legend>Caracteristica 1</legend>
<label>Nombre</label>
<input type="text" name="nombreCaracteristica[]" class="other"/>
<label>Descripcion</label>
示例2:
echo "checked";
}
?>
/></label>
<label>Categoria</label>
<select name="idCategoria" style="width: auto;">
<option value="">---</option>
<?php
$dato->obtenerListadoCategoriasProducto($_GET['id']);
?>
</select>
<label>Usos</label>
<select multiple id="usosSelect" name="idUso[]" style="width: auto;">
<option value="">---</option>
<?php
$dato->obtenerListadoUsosProducto($_GET['id']);
?>
</select>
<label onclick="javascript:$('#divImagenes').slideToggle('slow');" style="cursor: pointer;"><strong>IMAGENES</strong> (Deben tener un tamaño de 280 x 200 px)</label>
<div id="divImagenes" style="display: none;">
<?php
$dato->obtenerListadoImagenesProducto($_GET['id']);
?>
<a href="javascript:void(0);" onclick="agregarImagen();">Agregar Imagen</a>
</div>
<label onclick="javascript:$('#divCaracteristicas').slideToggle('slow');" style="cursor: pointer; margin-top: 15px;"><strong>CARACTERISTICAS</strong></label>
<div id="divCaracteristicas" style="display: none;">
<?php
$dato->obtenerListadoCaracteristicasProducto($_GET['id']);
?>
<a href="javascript:void(0);" onclick="agregarCaracteristica();">Agregar Característica</a>