View: 3821|Reply: 7
|
Function check integer dlm field
[Copy link]
|
|
Salam semua,
Ali ada masalah macam mana nak pastikan field integer ali ctnya field poskod, hanya nombor dibenarkan tok dimasukkan. sekiranya ali masukan abjad atau selain dr integer, akan pop up mesej kata, hanya iinteger dibenarkan.
terima kasih |
|
|
|
|
|
|
|
harness test() function in javascript |
|
|
|
|
|
|
|
Post Last Edit by alisetan at 18-1-2010 15:10
2# BorderManager
Lebih kurang lah bro,
kalau isi character dlm field integer, bila dia nak klik butang "next" keluar mesej "poskod mesti integer". so selagi tak betullkan , selagi tuh tak boleh pergi next page.
yang paling penting cam mana dia nak check input tuh mesti integer. |
|
|
|
|
|
|
|
4# alisetan
akak rasa ali nak wat data validation kot ni..
kalo betoi..
antara yg bole guna adalah is_int()..
ni akak bg contoh coding..
kalo nak kuarkan popup message..
kena guna java skit..
- <?php
- $poskod=12;
- //$poskod = $_POST['poskod'];
- if (is_int($poskod)) {
- echo "baru betul integer!Bole klik next dah\n";?>
- <INPUT TYPE="button" style="height: 25px; width: 100px" VALUE="NEXT" onClick="parent.location='http://www.google.com.my'"><br><br>
- <?} else {
- echo "<INPUT TYPE='button' style='height: 25px; width: 100px' VALUE='NEXT' onClick='show_alert()'>";
- }
- ?>
- <html>
- <script type="text/javascript">
- function show_alert()
- {
- alert("poskod mesti integer beb!!");
- }
- </script>
- </html>
Copy the Code |
|
|
|
|
|
|
|
5# ana_una
thanks byk2 akak, dah berjaya |
|
|
|
|
|
|
|
6# alisetan
ur welkam bebeh.. |
|
|
|
|
|
|
|
kan lebih baik kalo hanya allow user key-in integer 0-9 sahaja. tak perlu nk check lepas dia key-in, x perlu nk kuarkan alert message. |
|
|
|
|
|
|
| |
|