Generally to get the values from fields or any element in php from any input elements, textarea and so on we use either $_GET or $_POST and here I am not going into the intricacies of these methods you can refer to PHP Method on Getting Values From Form Lets say that we have following […]
How to store and retrieve documents as blob in the database using php
Storing files like images,PDF on the server as a BLOB data type (Binary large object) has always been a controversial topic. Though, if the size of the file which needs to be stored on the server isn’t as much bigger, then this way of storing files comes handy in many ways, as you gain full […]