Hola, joja_2.
Prueba esto:
Código PHP:
<html>
<head>
<script>
function numeros(e) {
tecla = (document.all) ? e.keyCode : e.which;
if ((tecla<48 || tecla>57) && tecla!=46) return false
}
</script>
</head>
<body>
<input type="text" onKeyPress="return numeros(event)">
</body>
</html>
Saludos,