所以我使用 CONCAT 将 2 个字符串组合在一起,并希望通过在现有字符串的末尾添加一个新字符串来更新我的数据库中的 TEXT 字段。
// This code works great. will add "EXTRA" at end of the feed.
$insert = ("update $username set feed = CONCAT(feed, 'EXTRA')");
mysql_query($insert);
// This code doesn't work. not sure what to change in the variable area?
$extra = "EXTRA";
$insert = ("update $username set feed = CONCAT(feed, '$extra')");
mysql_query($insert);
我尝试了变量声明的许多变体,但是当我只写一个字符串时,似乎无法让它像我一样工作。任何帮助或见解表示赞赏。
谢谢!