|
本帖最後由 compuper 於 2010-1-27 13:38 編輯
小弟 在很多論壇上遇到的功能
功能是
當使用者在申請帳號時
key完帳號後按下tab鍵
移到下一個文字欄位時
在帳號的文字欄位後面 馬上就顯示出這個帳號有沒有人使用過
下面的code是vbscript的簡單判斷
請問要怎麼直接連向資料庫去找尋帳號呢
因為小弟只會php語法的方式連向資料庫
vbscript裡面好像沒有辦法插入<?php ?>
實在不知道如何著手
麻煩各位給個方向
- <?php
- $cper=1;
- ?>
- <Script Language=VBScript>
- <!--
- Sub Checkno()
- Dim Tmpc
- Tmpc = Chr(Window.Event.Keycode)
- If Tmpc < "0" Or Tmpc > "9" Then
- Msgbox "只能輸入數字0-9",16,"輸入提示"
- Window.Event.Returnvalue = False
- End If
- End Sub
- Sub Send1()
- If Document.F2.No.Value ="" Then
- Msgbox "資料不可為空白",16,"錯誤提示"
- Else
- Document.F2.Submit
- End If
- End Sub
- Sub Send2()
- If Document.F2.No.Value ="" Then
- Msgbox "資料不可為空白",16,"錯誤提示"
- Window.Event.Returnvalue = False
- End If
- <?php
- $cper=2;
- ?>
- End Sub
- --></Script>
- <body>
- <input type="text" name="student_id" width="200" Onkeydown=Checkno />
- <?php
- if($cper==2){
- echo 222;
- }
- ?>
複製代碼 |
|