コード例 #1
0
            <!--Fin Menu Navegacion-->
            <div id="content">
                <!-- edit sub navigation and quick links here -->
                <div id="sub_nav">
                    <ul></ul>
                </div>
                <div id="left">
                    <!-- begin all content here -->
                    <h1 class="dashboard">Productos:  Modificar producto</h1>
                    <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" value="<?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "nombre");
?>
"  />
                            <label>Descripcion</label>
                            <textarea id="descripcionCorta" name="descripcion" cols="40" rows="10"><?php 
echo $dato->obtenerEspecificoProducto($_GET['id'], "descripcion");
?>
</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");