Así, anidá las otras funciones en la que valida
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>titulo</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript">
//<![CDATA[
function a(){
alert('funcion A');
}
function b(){
alert('funcion b');
}
function validar(){
a();
b();
var x=document.forms["form1"]["texto"].value;
if (x==null || x==""){
alert("Debe completar el campo texto");
return false;
}
}
//]]>
</script>
</head>
<body>
<div>
<?php
if(isset($_POST['procesar'])){ echo "<p>" . $_POST['texto'] . "</p>";
}else{
?>
<form name="form1" id="form1" method="post" action="<?php $_SERVER['PHP_SELF']; ?>" onsubmit="return validar();">
<p>
<input type="text" name="texto" value="" />
<input type="submit" name="procesar" value="procesar" />
</p>
</form>
<?php
}
?>
</div>
</body>
</html>
Saludos