hola corazon, para validar yo utilizo comunmente codigo en javascript pero lo ejecuto al mismo tipo que se oprime un boton submit:
Código HTML:
<html>
<head>
<title>hola</title>
<script>
function validar(formulario)
{
if(formulario.nombre.value=='')
{
alert("Debes ingresar los campos obligatorios");
formulario.nombre.focus();
return false;
}
if(formulario.nombre.edad=='')
{
alert("Debes ingresar los campos obligatorios");
formulario.edad.focus();
return false;
}
return true;
}
</script>
</head>
<body>
<form action="otra.php" method="post" onsubmit="validar(this)">
nombre: <input type="text" name="nombre"><br>
edad: <input type="text" name="edad">
</form>
</body>
</html>
espero te sirva corazon