Hola
xandria
Un ejemplo sencillo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function validar() {
if (document.forms[0]['txt'].value == '') {
alert('Escribe algo');
return false;
}
}
</script>
</head>
<body>
<form action="tupagina.php" onsubmit="return validar()">
<input type="text" name="txt" />
<input type="submit" />
</form>
</body>
</html>
Saludos,