发布网友 发布时间:2024-12-01 03:29
共4个回答
热心网友 时间:2024-12-01 16:09
好明显email是从表单传过来的,
你最好写成
sql="select * from t_userinfo where tel='" & email & "'"
热心网友 时间:2024-12-01 16:12
sql=("select * from t_userInfo where tel="&email&"")
这句话的意思好像是找出电话号码等于电子邮件得啊,肯定没有符合条件的记录了,你要的是不是下面的啊:
sql=("select * from t_userInfo where tel="&tel&"")
当然了你的先取得tel的值tel=request("tel"),假定你传递tel的参数名是tel
建议你最好
写成
sql="select * from t_userinfo where tel='" & email & "'
热心网友 时间:2024-12-01 16:14
sql="select * from t_userinfo where tel='" & email & "'"
热心网友 时间:2024-12-01 16:16
sql=("select * from t_userInfo where tel="&email&"")
这句话的意思好像是找出电话号码等于电子邮件得啊,肯定没有符合条件的记录了,你要的是不是下面的啊:
sql=("select * from t_userInfo where tel="&tel&"")
当然了你的先取得tel的值tel=request("tel"),假定你传递tel的参数名是tel