I have problem to save the uploaded images in the database. I am using mysql as database. Please can anyone help to me??
one of the most easiest way is to upload an image in a particular folder and then save path in your mysql table. just google how to upload the images in php/mysql. cheers!!
To just upload an image to a server use the copy function, google it for more information. And then using the $_FILE global you can save the filename to the database. mysql_query("INSERT INTO table (title,image) VALUES ('Title Here','".$_FILES['tmp_name']."')"); PHP: Something like that.
If you meant store the image in the database itself, you will need to use a binary type such as BLOB.