Hola
sitges65. Bienvenido al foro.
Puedes usar un poco de JavaScript
:
Código:
<html>
<head>
<script type="text/javascript">
function pulsar(e) {
tecla = (document.all) ? e.keyCode : e.which;
return (tecla != 13);
}
</script>
</head>
<body>
<form action="algo.php" onkeypress="return pulsar(event)">
<input type="text" />
<input type="submit" />
</form>
</body>
</html>
Saludos,