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
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";