<!DOCTYPE html>
<html lang="es">
<meta charset="UTF-8">
<head>
<title>Formulario </title>
</head>
<body>
<h3> Información sobre el producto </h3>
<form action="insertar_producto.php" method="post">
<fieldset>
<legend>Datos básicos</legend>
<label for="nombre">Nombre del producto</label> <br/>
<input type="text" id="nombre" name="nombre" value="" size="35" /> <br>
<br>
<label for="descripcion">Descripción del producto</label> <br/>
<textarea id="descripcion" name="descripcion" cols="40" rows="5"></textarea> <br>
<br>
<label for="foto">Foto</label>
<input type="text" id="foto" name="Foto" value="" /> <input type="submit" value="Elegir..." name="b1"> <br>
<br>
<input name="visitas" type="checkbox" /> Añadir contador de visitas
<br />
</fieldset>
<fieldset>
<legend>Datos económicos</legend>
<label for="precio">Precio</label>
<input type="text" name="men" size="5"> $
<label for="so">Impuestos</label> <select id="so" name="so">
<option value="4">4%</option>
<option value="7">7%</option>
<option value="16">16%</option>
<option value="25">25%</option>
</select> <br>
<br>
Promoción <br>
<input name="promocion" type="radio" value="ninguno" checked="checked"/>Ninguno
<br />
<input name="promocion" type="radio" value="transporte" />Transporte gratuito
<br />
<input name="promocion" type="radio" value="descuento" />Descuento 5%
</fieldset>
</form>
</body>
</html>
0 comentarios:
Publicar un comentario