I have been making a script to display users and make changes to their admin privileges.
Here is the code:
while ($row= mysql_fetch_assoc($query)
Just set the variable to an empty string before you use it. You can't use .= on a variable that does not exist yet:
.=
$insert = ""; while($row= mysql_fetch_assoc($query)) { // ... $insert .= ''; // ... 0 讨论(0) 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题