upload image in MySql Table

upload image in MySql Table

Hi there, I'm trying to upload an image from a html form into mysql table. 

I the form have several input, so my jquery is:
  1. $("#spot_submit_review").click(function() {
  2.        var vtitle = $('#title').val();
  3.        var vlongitude =$('#longitude').val();
  4.        var vlatitude = $('#latitude').val();
  5.        var vemail = $('#email').val();
  6.        var vstato =$('#stato').val();
  7.        var vuser  = $('#user').val();
  8.        var vdescription =$('#summernote').code();
  9.        var vphone=$('#phone').val();
  10.        var vweb = $('#web').val();
  11.        var vmobile =$('#mobile').val();
  12.        var vimage =$('#imgage').val();
  13.        
  14.         $.post("assets/addspot.php", //Required URL of the page on server
  15.                 {// Data Sending With Request To Server
  16.                     title: vtitle,
  17.                     longitude :vlongitude,
  18.                     latitude :vlatitude,
  19.                     email:vemail,
  20.                     stato : vstato, 
  21.                     user : vuser,
  22.                     phone:vphone,
  23.                     web : vweb,
  24.                     mobile : vmobile,
  25.                     image :vimage, <---- This is correct?
  26.                     description : vdescription
  27.                 },
  28.         function (response, status)
I would like sent Image file to php 

Thanks