I have a upload image function via <input type=file> function.
This is my script
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.prw_img').attr('src', e.target.result).width(112).height(112);
};
reader.readAsDataURL(input.files[0]);
}
}
My HTML code is
<img class= "prw_img" style="width:112px;height:112px;"/>
<input id="file" type="file" onchange="readURL(this);" name="files[]">
I am having a preview of the image in that <img> tag. Is there a way to save this uploaded image to my system
Here's the BIN.
And Also i don't want to popup a save as dialog box to be open. Is there the way to store the image in a database
