Ver Mensaje Individual
  #7 (permalink)  
Antiguo 09/08/2011, 09:50
lems1o
 
Fecha de Ingreso: julio-2011
Mensajes: 161
Antigüedad: 13 años, 3 meses
Puntos: 3
Respuesta: Como valido mis campos php

Agradezco enormemente sus opiniones, pero osea no entiendo como implimentar a modo de prueba este ejercicio validar los checkbox :

<html>
<head>

<title>Formato de Ingenier&iacute;a</title>

<!--<script type="text/javascript" src="view.js"></script>-->
<!--<script type="text/javascript" src="calendar.js"></script> M-->
<script>

function valida_envia(){
//valido el nombre
if (document.fvalida.nombre.value.length==0){
alert("Tiene que escribir su nombre")
document.fvalida.nombre.focus()
return 0;
}


//valido el interés
if (document.fvalida.interes.selectedIndex==0){
alert("Debe seleccionar un motivo de su contacto.")
document.fvalida.interes.focus()
return 0;
}


//el formulario se envia
alert("Muchas gracias por enviar el formulario");
document.fvalida.submit();
}

</script>
</head>
<form name="fvalida" action="foros2.php">
<table>
<tr>
<td>Nombre: </td>
<td><input type="text" name="nombre" size="30" maxlength="100"></td>
</tr>

<tr>
<td>Interés:</td>
<td>
<select name=interes>
<?php
$conexion=mysql_connect("localhost","root","mysql" )or
die("Problemas en la conexion");
mysql_select_db("gerenciador",$conexion) or
die("Problemas en la seleccion de la bd");
$registros=mysql_query("select id,nombre_c from calidad",$conexion) or
die("Problemas en el select:".mysql_error());
while($reg=mysql_fetch_array($registros))
{
echo "<option value=\"$reg[nombre_c]\">$reg[nombre_c]</option>";
}
?>
</select>
</td>
</tr>

<form method="post" action="algo.php" >
<input type="checkbox" name="miCheckbox[]" value="1" />
<input type="checkbox" name="miCheckbox[]" value="2" />
<input type="checkbox" name="miCheckbox[]" value="3" />
<tr>
<td colspan="2" align="center"><input type="button" value="Enviar" onclick="valida_envia()"></td>
</tr>
</table>
</form>


Como lo implemento en la misma funcion?