How to upload Image file using AJAX and jQuery

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 28

  • @oldguy8177able
    @oldguy8177able 5 หลายเดือนก่อน

    thank you mate,code worked first time,very clear and concise

  • @clementechs
    @clementechs 4 ปีที่แล้ว +1

    thanks brother it was very usefull

    • @makitweb
      @makitweb  3 ปีที่แล้ว

      Glad it helped

  • @beto2265
    @beto2265 4 ปีที่แล้ว +1

    muchas gracias, buen video

    • @makitweb
      @makitweb  4 ปีที่แล้ว

      De nada.

  • @umangternate
    @umangternate 4 ปีที่แล้ว

    How to write the value of URL (in ajax script) if the files are not in the same folder? For example, if the jscript is in a different folder but is included in the index.php and the upload.php is also in a different folder, how to write the url value in the javascript/ajax code?

  • @MrAersth
    @MrAersth 2 ปีที่แล้ว

    who can i send fd(file), and other values, input text value for example, i try this data: {fb, input value}, whitout results. nice video

    • @makitweb
      @makitweb  2 ปีที่แล้ว +1

      Append the other values in FormData object like this -
      var name = "Yogesh";
      var city = "Bhopal";
      fd.append('file',files[0]); // File
      fd.append('name',name); // Name
      fd.append('city',city); // City
      In the PHP file read name and city using POST.
      $name = $_POST['name'];
      $city = $_POST['city'];

    • @MrAersth
      @MrAersth 2 ปีที่แล้ว

      @@makitweb Thanks, u are my hero now, you have not idea how many days try to resolve this, i have only one more question, i try to send this radio buttom in the
      var var_name = $('input[name=radio_name]=checked', '#form_id').val()
      fd.append('var_name', var_name);
      , but whitout results, i try like other var but nothing. again THNKS

    • @makitweb
      @makitweb  2 ปีที่แล้ว

      Read the value of radio button like this -
      var var_name = $('input[name="radio_name"]:checked').val();
      fd.append('var_name', var_name);

  • @stb4327
    @stb4327 4 ปีที่แล้ว

    I have already subscribed and Liked

  • @stb4327
    @stb4327 4 ปีที่แล้ว +1

    You are amazing!

  • @hosseinhasanpouri5407
    @hosseinhasanpouri5407 3 ปีที่แล้ว +1

    this was help me , thank you :)

    • @makitweb
      @makitweb  3 ปีที่แล้ว

      You're welcome!

  • @adamfidler9945
    @adamfidler9945 4 ปีที่แล้ว

    Thankyou. It would be good if you could do image upload with text to my sqltoo.

  • @musiclovers8488
    @musiclovers8488 4 ปีที่แล้ว

    So simple ... neat and clean code ... can I ask you something ?

  • @arslanazam4542
    @arslanazam4542 5 ปีที่แล้ว

    Is data also send to db

    • @makitweb
      @makitweb  5 ปีที่แล้ว

      Hi Arslan,
      No data is not send to database. You can view this tutorial -th-cam.com/video/4dU1yS6iwGI/w-d-xo.html
      to know how to save image to database.

  • @abimbolaoladunni1725
    @abimbolaoladunni1725 4 ปีที่แล้ว

    Very helpful video Mr. Yogesh Singh. What if I want to upload both image and video file

    • @makitweb
      @makitweb  4 ปีที่แล้ว

      Hi Abimbola,
      You have to add video file extensions in the $valid_extensions Array.

  • @carlosvieirax5
    @carlosvieirax5 5 ปีที่แล้ว

    How can i send fd+string? (data: fd, id,)

    • @makitweb
      @makitweb  5 ปีที่แล้ว +1

      Hi Carlos,
      You need to append data to FormData object for sending value to AJAX file.
      Example -
      fd.append(name,'Yogesh');
      fd.append('city','bhopal');.
      Here, fd is the FormData object.

  • @aacv
    @aacv 4 ปีที่แล้ว

    not working on android

  • @stepone3040
    @stepone3040 4 ปีที่แล้ว

    Working good thanks

    • @makitweb
      @makitweb  4 ปีที่แล้ว +1

      You're welcome.

  • @donnfredericklucas9705
    @donnfredericklucas9705 3 ปีที่แล้ว

    Sakeeet

  • @emmanuelsiziba5142
    @emmanuelsiziba5142 5 ปีที่แล้ว

    nice

  • @АянЖанганысов-б5в
    @АянЖанганысов-б5в 4 ปีที่แล้ว

    братан хотя бы временами проверяй работает ли твой код