最新回答 / Darry_Zhao
那个提示是因为老师没有定义直接使用了$sets这个变量。你在foreach ($data as $key => $val) { $sets .= $key . "='" . $val . "',";}前添加一行 $sets='';即定义一个变量$sets为空,然后就不会有这个Notice了。但是那个激活失败应该不是这个引起的。。。。
2016-04-09
发送邮件失败啊!Uncaught exception 'Swift_TransportException' with message 'Failed to authenticate on SMTP server with username "1911939348@qq.com" using 1 possible authenticators'
2016-04-09
已采纳回答 / 用户4681732
从你的结果来看 是因为把 "'.md5('pdw02').'" 双引号中的内容看做是字符串了可以把 "'.md5('pdw02').'" 边上的双引号,单引号和. 去掉试试 即变成md5('pdw02') 这样
2016-04-09
最赞回答 / UFO2015
$sql = <<<EOFINSERT user(username,passwd) VALUES("u01","'.md5()'"),("u02","'.md5('pwd').'"),("u03","'.md5()'");EOF;EOF;// EOF; 结束符要顶格写(前面不可以有空格!)google:http://stackoverflow.com/questions/20931450/parse-error-syntax-error-unexpected-t-sl
2016-04-09