主頁 > 知識庫 > discuz 2.0整合asp系統(tǒng),用戶添加函數(shù)

discuz 2.0整合asp系統(tǒng),用戶添加函數(shù)

熱門標(biāo)簽:地圖標(biāo)注服務(wù)哪家好 長沙防封電銷卡品牌 智能電銷機(jī)器人適用于哪些行業(yè) 外呼系統(tǒng)還用卡么 西寧公司外呼系統(tǒng)平臺 地圖標(biāo)注宅基地 徐州人工智能電銷機(jī)器人好用嗎 騰訊地圖標(biāo)注商戶關(guān)閉 武漢營銷電話機(jī)器人軟件
函數(shù)可以參考:
復(fù)制代碼 代碼如下:

%
'注冊論壇用戶,參數(shù)說明
'username 用戶登錄名稱
'password 用戶有登錄密碼
'groupid 用戶組id,高級會員,用戶組id為17;正式會員,用戶組id為18;普通會員,則用戶組id為10
'email,realname,mobile,phone 電子郵件,真實姓名,手機(jī),電話
sub regbbsuser(username,password,groupid,email,realname,mobile,phone)
'數(shù)據(jù)庫連接
MM_conn_bbs_STRING="Driver={SQL Server};server=SURUI;uid=sa;pwd=sa;database=ntylswbbs;"
Set connbbs=Server.Createobject("ADODB.Connection")
connbbs.open MM_conn_bbs_STRING
'檢查用戶名是否存在
checkuser="select * from dnt_users where username='"username"'"
set checkuserrs=connbbs.execute(checkuser)
if not checkuserrs.eof then
haveuser="true"
else
haveuser="false"
end if
'如果用戶不存在,則增加論壇用戶
if haveuser="false" then

'更新dnt_users(用戶信息)表
sql1="select * from dnt_users"
set rs1=server.createobject("ADODB.Recordset")
rs1.open sql1,connbbs,1,3
rs1.addnew
rs1("username")=username
rs1("password")=md532(password)
rs1("groupid")=groupid
rs1("email")=email
rs1.update
rs1.close

'讀取剛建立用戶的id
sql2="select * from dnt_users where username='"username"'"
set rs2=server.createobject("ADODB.Recordset")
rs2.open sql2,connbbs,1,1
useruid=rs2("uid")
rs2.close

'更新dnt_userfields(用戶相關(guān)信息)表
sql3="select * from dnt_userfields"
set rs3=server.createobject("ADODB.Recordset")
rs3.open sql3,connbbs,1,3
rs3.addnew
rs3("uid")=useruid
if realname>"" then
rs3("realname")=realname
end if
if mobile>"" then
rs3("mobile")=mobile
end if
if phone>"" then
rs3("phone")=phone
end if
rs3.update
rs3.close

'更新dnt_statistics(論壇狀態(tài)信息)表
sql4="select * from dnt_statistics"
set rs4=server.createobject("ADODB.Recordset")
rs4.open sql4,connbbs,1,3
rs4("totalusers")=rs4("totalusers")+1
rs4("lastusername")=username
rs4("lastuserid")=useruid
rs4.update
rs4.close

end if

connbbs.close

end sub


'調(diào)用函數(shù)
call regbbsuser("asp","123456789",18,"123@163.com","啦啦啦","13580351626","0207235803")
%>

標(biāo)簽:鷹潭 雅安 普洱 通化 巴彥淖爾 荊門 通遼 運(yùn)城

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《discuz 2.0整合asp系統(tǒng),用戶添加函數(shù)》,本文關(guān)鍵詞  discuz,2.0,整合,asp,系統(tǒng),用戶,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《discuz 2.0整合asp系統(tǒng),用戶添加函數(shù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于discuz 2.0整合asp系統(tǒng),用戶添加函數(shù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章