Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/06/2009, 08:31
agnes20
 
Fecha de Ingreso: mayo-2009
Mensajes: 81
Antigüedad: 15 años, 6 meses
Puntos: 0
Exclamación Validar formulario campos en blanco

como puedo validar un formulario, para que cuando inserte un producto y el campo este vacio no me salga en la base de datos en blanco????

codigo:

<form enctype="multipart/form-data" method="POST" target="arriba" action="<?php $PHP_SELF ?>">
<table border="0" align="center">
<tr>
<td class="Estilo2">Codigo:</td>
<td><input type="text" name="codigo" /></td>
</tr>
<tr>
<td class="Estilo2">Nombre: </td>
<td><input type="text" name="nombre" /></td>
</tr>
<tr>
<td class="Estilo2">Unidades:</td>
<td><input type="text" name="stock" /></td>
</tr>
<tr>
<td class="Estilo2">Precio Unidad:</td>
<td><input type="text" name="precio_unidad" /></td>
</tr>
<tr>
<td class="Estilo2">Precio Antiguo:</td>
<td><input type="text" name="precio_antiguo" /></td>
</tr>
<tr>
<tr>
<td class="Estilo2">Descripcion: </td>
<td><textarea name="descripcion" wrap="soft" cols="20" rows="5"></textarea></td>
</tr>
<tr>
<td colspan=2><input type="file" name="archivo_usuario" size=45>
<br /></td>
</tr>
<td colspan=2 align=center><input type="submit" value="insertar" name="insertar">
<input type="reset" name="borrar" value="Borrar" />
</td>
</tr>
</table>
</form>