How can I add text to SQL Column

前端 未结 5 1238
盖世英雄少女心
盖世英雄少女心 2021-02-14 17:15

I want to update 1 column in SQL Table. Example: Current value in column is like this

2013/09/pizzalover.jpg 
2013/10/pasta.jpg       

Now i wa

5条回答
  •  半阙折子戏
    2021-02-14 17:44

    First get the information stored in your database and then edit it, you can do that like this:

    
    

    And then update your database like normal:

    $updateq = "UPDATE `blog-posts`  SET `title` = '$title' WHERE `id` = 11";
    

提交回复
热议问题