mysql user 用户名长度_为什么注册的用户账号长度不能超过5个字符

  • Post author:
  • Post category:mysql


注册程序如下,IIS6.02K3数据库是MYSQLODBC是最新版当新用户注册时,LOGINID长度不让超过5个字符,实际上数据库中这个字段是20个字符长库LOGINID=trim(request(“LOGINID”))password=trim…

注册程序如下,IIS6.0 2K3 数据库是 MYSQL ODBC是最新版

当新用户注册时,LOGINID长度不让超过5个字符,实际上数据库中这个字段是20个字符长库

LOGINID = trim(request(“LOGINID”))

password = trim(request(“password”))

confirm_password = trim(request(“confirm_password”))

if (LOGINID=””) then

response.write “你丫没名字呀,滚回去”

response.end

end if

if (password=””) then

response.write “你丫开门不用钥匙,想做贼呢”

response.end

end if

if (password <> confirm_password) then

response.write “两次输入的密码不一致!”

response.end

end if

password=md5(password)

password=mid(password,”9″,”16″)

set rs=se



版权声明:本文为weixin_29927289原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。