Copy link to clipboard
Copied
Whats the easiest way to upload an image to a php database, using myPHPAdmin mySQL
thanks
Copy link to clipboard
Copied
i forgot to mention i already have a database that is populated by user information, i need to add another fieild that the user can add an image that can be called when needed
Copy link to clipboard
Copied
The most popular practice these days is to not store binary data in the database. Upload the image to the filesystem, and store the path in the database instead.
Copy link to clipboard
Copied
ok what do i need to achieve this,basically its user signatures (written) need to be stored with there user information
thanks