I am trying to create a image upload site, where users can upload an image to the site. Which is the easiest possible way to do this without using any plugin. How do you get exif/meta information from the image?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Specify you form type to be file.
in you before save see the output of fielfield, it will contain the $_FILE like information, having all tmp-name, original filename and error code. you can urself move_uploaded_files() to your convenient location. Store the filename into your table. But, for the implementation you will have to deal with various things like two filenames having same name, file size, extensions allowed, permissions. Delete files when records get deleted. So, for learning purposes u can try this out but for production mode it'd be better if you stick to a plugin. |
|||
|
|
