Please help me!
The program is about the PHP&MYSQL.Please check the code.
$sqlUpdate="update dict_list set dict_listname='".$list_name."',dict_listsmall='".$list_small."',dict_listremark='".$list_remark."',dict_listorder=".$list_order." where dict_listid=".$edit_id;
echo $sqlUpdate."<br>";
mysql_query($sqlupdate,$conn) or die(mysql_error());
But I run code appear a error "Query was empty"
I echo the SqlUpdate code:
update dict_list set dict_listname='administrator',dict_listsmall='admin,dict_listremark='The administrator accounts',dict_listorder=1 where dict_listid=3
But I can success run SqlUpdate on phpmyadmin,why?