Uploading Images

0

I do not have so much knowledge in the backend area, but I need an image uploader, I looked for a way that does not use database, but I believe it's impossible.

I need a uploader similar to Froala editor , I decided to take a closer look at his code to understand a bit more it works, find out that it uses a url ( link ) to make a temporary upload of the images, then how I'm limited in the backend area finding a project in GitHub but I'm having trouble setting up.

So I need help configuring it because I'm a layman in this area. What data do I need to set up an image uploader? , Is it possible to use the same temporary Froala upload url on it ?, or do you need any more server data? not a very good attitude but I need something temporary.

If you have other options to recommend to me, please feel free.

    
asked by anonymous 15.03.2016 / 13:58

1 answer

1

It is entirely possible to upload a picture without a database, if it is to store in a directory within your hosting, or in a folder of your local project, all you have to do is to recover the data from the file via php, and specify a target directory, if it is too lazy, try to use something that facilitates, see this plugin:

link (ps: the plugin is static, you still need to manipulate the file via php)

and see some internet tutorials

    
15.03.2016 / 14:10