sql=mysql_query("select usernc from tb_user where usernc='".this->usernc."'",conn);问题
其中usernc='".$this->usernc."'是什么意思,为什么要在$this->usernc两侧各加一个点?...
其中usernc='".$this->usernc."'是什么意思,为什么要在$this->usernc两侧各加一个点?
展开
展开全部
这是把字符串给拼接起来,就和其他语言中的 + 、ASP中的& 是一样的 假设$this->usernc = 'test'; $sql=mysql_query("select usernc from tb_user where usernc='".$this->usernc."'",$conn); 那么就相当于 $sql=mysql_query("select usernc from tb_user where usernc='test'",$conn); 加个''是因为usernc是字符型,需要单引号把字符内容括起来,否则SQL将会有语法错误。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询