So i have a mysql database and this is what is contains for each row:
ID | title | subtitle | image | username
Id = Auto
Title is a textbox on site
subtitle is a textbox on site
image you upload it
username is a textbox.
How can i for the image insert the uploaded url where it uploads
being my website.com/uploads
$_FILES["file"]["name"]and save it to the image column in DBtypeof the image column? Is it aBLOBwhere you want to store the image data? Or is it aVARCHARcolumn and you want to save the uploaded image somewhere in disk and save the path in this column?