Hola
lrunge
Un poco más sencillo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function validar(e) {
tecla = (document.all) ? e.keyCode : e.which;
return tecla!=32;
}
</script>
</head>
<body>
<input onkeypress="return validar(event)" type="text">
</body>
</html>
Saludos,