当前位置: 首页>>代码示例>>PHP>>正文


PHP funciones::obtenerListadoUsosProducto方法代码示例

本文整理汇总了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&nbsp;<input type="checkbox" name="destacado" class="other" value="1" /></label>
                            <label>Recomendado&nbsp;<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>
开发者ID:laiello,项目名称:coopcrucial,代码行数:31,代码来源:productosCrear.php

示例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&iacute;stica</a>
开发者ID:laiello,项目名称:coopcrucial,代码行数:31,代码来源:productosModificar.php


注:本文中的funciones::obtenerListadoUsosProducto方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。