Пример #1
0
                    <p></p>
                    <div class="div_header">Form Fields</div>
                    <div class="div_content">
                        <form action="clases/funciones.php" method="post" id="formularioEnvio" enctype="multipart/form-data">
                            <label>Nombre</label>
                            <input type="text" name="nombre" maxlength="200"  />
                            <label>Descripcion</label>
                            <textarea id="descripcionCorta" name="descripcion" cols="40" rows="10"></textarea>
                            <label>Garantia</label>
                            <input type="text" name="garantia" class="other" maxlength="20"  />
                            <label>Marca</label>
                            <input type="text" name="marca" class="other" maxlength="30"  />
                            <label>Tipo de talla</label>
                            <select id="tipoTalla" name="tipoTalla" style="width: auto;">
<?php 
$dato->obtenerListadoTipoTallas();
?>
                            </select>
                            <label>Colores (Separados por coma (,))</label>
                            <input type="text" name="colores" class="other" maxlength="100"  />
                            <label>Precio</label>
                            <input type="text" name="precio" class="other" maxlength="15"  />
                            <label>Precio Web</label>
                            <input type="text" name="precioWeb" class="other" maxlength="15"  />
                            <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>
Пример #2
0
?>
</textarea>
                            <label>Garantia</label>
                            <input type="text" name="garantia" class="other" maxlength="20" value="<?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "garantia");
?>
"  />
                            <label>Marca</label>
                            <input type="text" name="marca" class="other" maxlength="30" value="<?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "marca");
?>
" />
                            <label>Tipo de talla</label>
                            <select id="tipoTalla" name="tipoTalla" style="width: auto;">
<?php 
$dato->obtenerListadoTipoTallas($_GET['id']);
?>
                            </select>
                            <label>Colores (Separados por coma (,))</label>
                            <input type="text" name="colores" class="other" maxlength="100" value="<?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "colores");
?>
" />
                            <label>Precio</label>
                            <input type="text" name="precio" class="other" maxlength="15" value="<?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "precio");
?>
" />
                            <label>Precio Web</label>
                            <input type="text" name="precioWeb" class="other" maxlength="15" value="<?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "precioWeb");