multiple image upload one row in php MySQL

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 14

  • @PratigyaPanwar-v1l
    @PratigyaPanwar-v1l 11 місяців тому

    Please make video on updating multiple images.

    • @Valo_with_Starlight
      @Valo_with_Starlight  10 місяців тому

      ua-cam.com/video/ivQSPDEItsA/v-deo.html please check this video 💕

  • @RicoJEi8hT
    @RicoJEi8hT 5 місяців тому

    Can you upload the source code start with insert, edit / update, delete into google drive? Need this source code....
    Thanks for sharing....

    • @Valo_with_Starlight
      @Valo_with_Starlight  5 місяців тому

      i have no idea about but i am tring to give some helpful information.
      github.com/Rahul-soni-01/multiple-image-Upload-in-Google-drive.git

    • @RicoJEi8hT
      @RicoJEi8hT 5 місяців тому

      @@Valo_with_Starlight 😆
      I mean i need the source code you made from insert, update, delete. Can you upload your source code into google drive? So i can use your source code. Thanks for your help. 🙏

    • @RicoJEi8hT
      @RicoJEi8hT 5 місяців тому

      @@Valo_with_Starlight Or you can upload to your github...

    • @RicoJEi8hT
      @RicoJEi8hT 5 місяців тому +1

      @@Valo_with_Starlight I've ound the source code on github. I think that's yours.... 😁
      Thank you very much...

  • @jonathanatillo8916
    @jonathanatillo8916 Рік тому +1

    send source code it doesnt work for me :(

    • @Valo_with_Starlight
      @Valo_with_Starlight  Рік тому +1

      $all_files = $_FILES['images'];
      $image_name = $_FILES['images']['name'];
      $image_tmp = $_FILES['images']['tmp_name'];
      $location = "images/";
      $image = implode(",",$image_name);
      if (!empty($image_name))
      {
      foreach ($image_name as $key => $val)
      {
      $targetPath = $location.$val;
      move_uploaded_file($_FILES['images']['tmp_name'][$key],"$targetPath");
      }
      }

  • @Valo_with_Starlight
    @Valo_with_Starlight  9 місяців тому

    multiple image Update and delete :-
    ua-cam.com/video/z3RG68WfXh4/v-deo.html

  • @pocoace5415
    @pocoace5415 Рік тому +1

    doesnt work

    • @Valo_with_Starlight
      @Valo_with_Starlight  Рік тому +1

      I will send you my source code

    • @pocoace5415
      @pocoace5415 Рік тому

      @@Valo_with_Starlight wow how?

    • @Valo_with_Starlight
      @Valo_with_Starlight  Рік тому +2

      @@pocoace5415
      $all_files = $_FILES['images'];
      $image_name = $_FILES['images']['name'];
      $image_tmp = $_FILES['images']['tmp_name'];
      $location = "images/";
      $image = implode(",",$image_name);
      if (!empty($image_name))
      {
      foreach ($image_name as $key => $val)
      {
      $targetPath = $location.$val;
      move_uploaded_file($_FILES['images']['tmp_name'][$key],"$targetPath");
      }
      }
      $location ( image upload location )