How can we avoid typing a letters or numbers in html tags? Do we still need to create a block of codes in PHP just to avoid it? or we can disabled it in through html just like this:
<input type="text" />
instead of doing it can we make it like this?
<input type="number" />
so that letters will not appear if you press any letters.
<body>
<table>
<tr>
<td>this is for text</td><td><input type="text" size="5" maxlength="5"></td>
<td>this for numbers</td><td><input type="number" size="5" maxlength="5"></td>
</tr>
</table>
</body>
any idea? where should i put the javaScript?