Download and Upload files using HTML & PHP

Поділитися
Вставка

КОМЕНТАРІ • 297

  • @whatnowZA
    @whatnowZA 5 років тому +7

    I've been looking for this for almost two weeks now :)

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

    i have been looking for this since so long didn't find a perfect video except this!!!😭❤️

  • @g-enterprises973
    @g-enterprises973 5 років тому +1

    Hi. I tried everything that the video said, and i also copied the sample codes, but i was only able to select the file. The upload option did not work. Can some one please help me figure out what is wrong? Thanks in advance.

  • @Wabwire-Ronald
    @Wabwire-Ronald 4 роки тому

    This was very important for me. I had searched how to do this fr a long time. Thank you

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      You’re welcome.

    • @Wabwire-Ronald
      @Wabwire-Ronald 4 роки тому

      if i could now know how i can make the displayed documents in order from the most recent to the least, it will be so good.

    • @Wabwire-Ronald
      @Wabwire-Ronald 4 роки тому

      and also if i want to have another option of viewing the document instead of downloading it

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      For ordering, you can save the filename as timestamp and display in descending order.
      Display image and video is simple, for pdf you have to use header content-type: application/pdf

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

    Thank you!
    What if i need to put it the links at table,
    (# , title, download link) ?
    Plz need script or video like this

  • @askjdaksjdn
    @askjdaksjdn 2 роки тому +1

    is there anyway to create a new page to download and not just the same one with the download button ?

    • @AdnanAfzal565
      @AdnanAfzal565  2 роки тому

      Do you have any design so I can get the idea ?

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

    love your outro

  • @davidbermudez7704
    @davidbermudez7704 6 років тому +4

    Just what I needed for my testing site thank you so much

  • @moanxion9102
    @moanxion9102 5 років тому +2

    I hope there are more You tubers like u

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      Thanks. Great to hear.
      Keep sharing to help me reach more people.

  • @phenomgaming3152
    @phenomgaming3152 5 років тому +5

    Thumbs up dude u made it so simple

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      You're welcome. Make sure you subscribe for more helpful videos.

  • @joseluisbeltramone599
    @joseluisbeltramone599 5 років тому +6

    Good tutorial. Right to the point!. Thanks a lot.

  • @betelhemtesfaye7838
    @betelhemtesfaye7838 5 років тому +1

    It's the precise and clean!!! Thanks Adnan!

  • @techprogramming9827
    @techprogramming9827 2 роки тому

    so how i can uploaded into mysql database?

    • @AdnanAfzal565
      @AdnanAfzal565  2 роки тому

      You can save the path using following mysql query:
      INSERT INTO uploads(path) VALUES ($path)

    • @techprogramming9827
      @techprogramming9827 2 роки тому

      @@AdnanAfzal565 i already do this but its not working when i submit it will not go into the database

    • @techprogramming9827
      @techprogramming9827 2 роки тому

    • @AdnanAfzal565
      @AdnanAfzal565  2 роки тому

      Make sure you have correct database, table and column names.

  • @Artmoreralph
    @Artmoreralph 6 років тому +1

    Sir whenever i click upload it doesmt do anything. the file is not there

  • @janmichaelbesinga3867
    @janmichaelbesinga3867 6 років тому +4

    works like magic. two thumbs up*

  • @KrzysiekTannenberg
    @KrzysiekTannenberg 5 років тому

    Hello !
    could it be changed to make each file have a checkbox and after selecting it could be deleted?
    also when uploading add the function that when the file has the same name and size it would display "the file already exists" ?

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      Yes, for deleting you can use "unlink()" function and for checking duplicate file name, you can use "file_exists()" function.

  • @novelchandra8329
    @novelchandra8329 4 роки тому

    please i need your favor to this issue.. i download a excel file from local server, then i edit the file, then i upload it, i need to know is my file updated or not so i download the file again.. the system should've overwrite it but it's not.. but in the server PC it's updated.. tell me how to update the download link

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      When you are uploading the file, append the timestamp in it. Like this:
      move_uploaded_file($_FILES["file"]["tmp_name"], $_FILES["file"]["name"] . "-" . time());

    • @novelchandra8329
      @novelchandra8329 4 роки тому

      @@AdnanAfzal565 then it will add a new file instead overwrite it.. I need to update that download link.. thank you for your kindly reply

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      @@novelchandra8329 if the file name is same, then it will be updated.

    • @novelchandra8329
      @novelchandra8329 4 роки тому

      @@AdnanAfzal565 but in the code you've given to me it would be filename-time right??cmiiw

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      Yes.

  • @syedazmat4032
    @syedazmat4032 6 років тому +2

    thats what i was looking for...Thank you

  • @jokerry9627
    @jokerry9627 6 років тому +1

    when I click on the file ... it downloads the file with error: failed ... no file.

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      It is because you have selected the wrong file path, please double check your spellings.

    • @majdoubwided6666
      @majdoubwided6666 6 років тому

      i have the same error, help please

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      You need to double check your spellings. It says that the file is not found on server.

  • @arjunraj-k
    @arjunraj-k 6 років тому +1

    why the index $a starts at 2? ($a=2 in for loop)

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      because the first 2 indices are for "." current directory and ".." previous directory

  • @hardyproceedings281
    @hardyproceedings281 3 роки тому

    That's what I call a man Job! Right to the point...Good job buddy!

  • @nsabimanaemmanuel5416
    @nsabimanaemmanuel5416 6 років тому +1

    What amazing is this, you're the best,wawo special thanks i have been looking for this upload and download in php for a week and you have helped me.Once again thank you,very brief and specific.Please i would love to see when you also include error and extensions and file sizes for memory or space purposes.be blessed!!!!!!

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      Sure. Will do that too. Thanks.

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      @Jake Propst Can you explain what error you are facing ?

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      @Jake Propst No problem. Everyone was once a newbie.
      You can check your browser console. There must be an error in your Javascript.
      Right click in your browser empty space, go to "Inspect Element" then in "Console" tab.

  • @techprogramming9827
    @techprogramming9827 2 роки тому

    did this file goes into the database?

    • @AdnanAfzal565
      @AdnanAfzal565  2 роки тому

      No. It will only be saved physically in uploads folder.

  • @hdmirswb
    @hdmirswb 4 роки тому

    Can I also use a button instead of the

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      Yes, to download files you can use an anchor tag.

  • @akashsrivastava7883
    @akashsrivastava7883 4 роки тому

    How to save the uploaded file in the uploads folder with a specific name?

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      In your move_uploaded_file function, set second parameter to the file name of your choice. For example,
      move_uploaded_file($_FILES["file"]["tmp_name"], "uploads/My-file.png");

    • @akashsrivastava7883
      @akashsrivastava7883 4 роки тому +1

      @@AdnanAfzal565 thank you so much :)

  • @BB-fv7ib
    @BB-fv7ib 5 років тому

    1) Can other computers access it just writing the local host path as long as your xamp server is on on your computer?
    2)Do you know how to restrict access around a wifi, meaning people can access that page if they are connected to that specific wifi

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому +1

      No. They can only access if they know your ipv4 address which can be get only from ipconfig /all command.

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

    Is there a way to chech file size and than hande the info?

  • @michaelangeloserban4859
    @michaelangeloserban4859 4 роки тому

    hi sir..im using datatables..i want to the download the specific file in my upload folder how can i do that..please help me..thank you

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      If you follow this tutorial completely, you will be able to download files.

  • @rupesh_kumar_mistri
    @rupesh_kumar_mistri 3 роки тому +1

    Thank You For sharing your source code it done its work

  • @dishatiwari4994
    @dishatiwari4994 3 роки тому

    Hi Adnan
    I tried the way you showed in the video & its working fine but I'm not able to download txt and image files........can you suggest a code that I can add to make it work for image & txt files as well?

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      The code should be same for all files. Make sure the path and file name is correct.

  • @nilanthys5090
    @nilanthys5090 7 років тому +1

    i did everything like in the vid,but when i click on the upload button, nothing happens. Can you help?

    • @AdnanAfzal565
      @AdnanAfzal565  7 років тому

      Can you send your code here ?

    • @nilanthys5090
      @nilanthys5090 7 років тому

      INDEX.php :

    • @AdnanAfzal565
      @AdnanAfzal565  7 років тому

      Your tag is not properly closed. Use this:

    • @nilanthys5090
      @nilanthys5090 7 років тому

      Thank you,but it still dont work. It does not even show the uploaded files,and i cant find them in the uploads folder neither. :/

    • @AdnanAfzal565
      @AdnanAfzal565  7 років тому

      Check your directory permissions, it should be 777.

  • @jaedon01
    @jaedon01 4 роки тому

    nice one bro but how can i integrate it to the social site so if a user send message , friend request, group request and others the other will receive the sound notifications on his or her end?
    pls bro

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      For notification sound, you can follow this: ua-cam.com/video/7mKXEiJu_Kg/v-deo.html
      It is HTML & Javascript, social network project is created in HTML & JS too, so you can integrate that with little work.

  • @takzobye
    @takzobye 5 років тому +1

    How to upload a large file

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      You need to enable following 4 properties in your "php.ini" file located in "xampp/php/php.ini":
      upload_max_filesize - The maximum allowed upload file size.
      post_max_size - The maximum allowed POST data size.
      max_input_time - Maximum allowed input time.
      max_execution_time - The maximum allowed time the scripts are allowed to run.

    • @takzobye
      @takzobye 5 років тому +1

      @@AdnanAfzal565 thanks

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      @@takzobye Welcome. Keep sharing.

    • @takzobye
      @takzobye 5 років тому

      @@AdnanAfzal565 I dont have
      post_max_size
      max_execution_time
      max_input_time
      I only have upload_max_filesize

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      @@takzobye That's okay, it depends on server and PHP version. Try restarting XAMPP and it will work.

  • @haiderabbas6407
    @haiderabbas6407 2 роки тому

    Thank you, but I had trouble downloading a file or an image that doesn't do what I do.

    • @AdnanAfzal565
      @AdnanAfzal565  2 роки тому

      Which type of file you are trying to download ?

  • @janmichaelbesinga3867
    @janmichaelbesinga3867 6 років тому +2

    but i think it doesnt upload files more than 2mb

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому +2

      You can always change the maximum upload file size from file "php.ini". You will see 2 directives in that file:
      upload_max_filesize
      and
      post_max_size

    • @janmichaelbesinga3867
      @janmichaelbesinga3867 6 років тому +1

      @@AdnanAfzal565 how sir?

    • @janmichaelbesinga3867
      @janmichaelbesinga3867 6 років тому +1

      @@AdnanAfzal565 got it already.. thanks :)

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      @@janmichaelbesinga3867 Great, let me know if you have any question.

  • @辰-g4i
    @辰-g4i 3 роки тому

    If I create a system like this in pc ,can I download the file with phone ?

  • @gnaneshgn8341
    @gnaneshgn8341 6 років тому

    im new to php...and im have written the code as in the video..but even though im getting an error like Object not found after clicking upload..pls help...!!!!!!

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому +1

      It is because you have an error in file name spellings. Double check if your file name is same as in your code.

    • @gnaneshgn8341
      @gnaneshgn8341 6 років тому

      ive checked....everything is correct .im getting error in "upload.php " and also can u please explain "move_uploaded_file($file["tmp_name"], "upload/".$file["name"]);" im confusedwith that...

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому +1

      @@gnaneshgn8341 It will save the file in server directory. Make sure you have a folder named "upload"

  • @smartwolf9045
    @smartwolf9045 4 роки тому

    Very clear, thanks a lot man you made my day

  • @TechNo1geek
    @TechNo1geek 4 роки тому

    I don't know how to get the localhost thingy

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      You can simply download XAMPP, WAMP or MAMP for localhost.

  • @macahilosclarkq.1672
    @macahilosclarkq.1672 3 роки тому +1

    Thank you this helps a lot

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      You are welcome.

    • @macahilosclarkq.1672
      @macahilosclarkq.1672 3 роки тому

      @@AdnanAfzal565 bro its saying php warning: File upload error - unable to create a temporary file in uknown on line 0

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      @@macahilosclarkq.1672 Check if you have any error in files object, like following:
      print_r($_FILES["video"]["error"]);

  • @user-dz4qq7gv1w
    @user-dz4qq7gv1w 5 років тому +1

    tp gimana cara kita linkkan agar file dapat di upload/download oleh setiap user tanpa di tampilkan ke user lain. sekali lagi terima kasih..!

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      Jika Anda memiliki sistem login maka Anda dapat menetapkan suatu kondisi berdasarkan ID pengguna.

  • @aimannatasha4629
    @aimannatasha4629 6 років тому +2

    Thank you very much for this coding tutorial :D

  • @adamhaglund2223
    @adamhaglund2223 5 років тому

    How do I add a delete button that deletes the file I want to rid of?

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      You can call built-in PHP function:
      unlink("path_of_file");
      to delete the file.

    • @adamhaglund2223
      @adamhaglund2223 5 років тому

      @@AdnanAfzal565 Ok, but how do I "grab" the full name from the script and get it into the unlink("full_name.here")?

  • @001-q1s
    @001-q1s 6 років тому

    Can someone tell me if i can make it online with free web hosting sites??

  • @DamonMedekMusic
    @DamonMedekMusic 4 роки тому

    FOR MAC USERS
    make sure the uploads folder is read & writable. it is read only by default because many xampp folders are defaulted that way. Right click folder, click get info, unlock, change to read and write, now it should work. Thats why windows users are saying success while mac users are pulling their hair out.

  • @twerwaneholisternersclub4216
    @twerwaneholisternersclub4216 4 роки тому

    thanks for this but my issue is i have a registration form but i want it to upload multiple files. any help

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      Yes, you can upload multiple files by following this:
      ua-cam.com/video/eHEDJBk3ie0/v-deo.html

  • @_etg
    @_etg 3 роки тому

    Hey do you know how to put images and description for the uploaded files?

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      Yes, just create another column in database with description of images.

    • @_etg
      @_etg 3 роки тому

      Also thanks for this video it helped me

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      You are welcome.

  • @soman5754
    @soman5754 5 років тому

    where does the file upload to?
    and can i download even if its not on my computer?

  • @dreamc1626
    @dreamc1626 2 роки тому

    Thanks this is what i looking for

  • @everythingfree4643
    @everythingfree4643 5 років тому

    register is not done verifying my gmail

  • @ss11235
    @ss11235 5 років тому

    Can you please help with the code for a banner on top of index.php page

  • @farmtech-1211
    @farmtech-1211 5 років тому +1

    Thanks! This is very useful and simple

  • @nivedisinghal8146
    @nivedisinghal8146 4 роки тому

    The link automatically downloads the file rather than opening it...help

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      Yes, this tutorial is about downloading the file. What type of file you want to view in the browser (pdf, excel etc.) ?

    • @nivedisinghal8146
      @nivedisinghal8146 4 роки тому

      Adnan Afzal i want every file type to get opened...i tried this pdf is directly downloading..docx and jpeg are opeing

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      There is no general method that will display any kind of file in the browser. You have to put conditions on each type of file and call functions separately.
      For example, to display the PDF file, you can follow:
      adnan-tech.com/pdf-view-in-browser-and-export-as-file-php/
      To display Excel file, you can follow:
      adnan-tech.com/create-and-read-excel-sheets-with-styles-and-dynamic-data-php-mysql/

    • @nivedisinghal8146
      @nivedisinghal8146 4 роки тому

      Adnan Afzal Okay thanks for the help

  • @ss11235
    @ss11235 5 років тому

    I created the files just like you said and when i open it google chrome just shows me the code i typed and nothing else. I am new to coding and i am doing this in order to set-up a file share website on our IIS server for lab use.
    Your application is exactly what i am looking for.

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      You need to work in XAMPP htdocs

    • @ss11235
      @ss11235 5 років тому

      @@AdnanAfzal565 Many thanks for the reply. I was using IIS and reached to a point where it would load the index.php page. When i upload file, i get error "This page isn’t working; 10.0.0.99 is currently unable to handle this request.
      ;
      HTTP ERROR 500"
      I will do some research about XAMPP and update the thread.

    • @ss11235
      @ss11235 5 років тому

      ​@@AdnanAfzal565 I installed XAMPP on the server and it works beautifully. Thanks for the help.
      Just what we needed here.

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      @@ss11235 Yes, search for php.ini file in XAMPP/php folder. And search for max_upload_filesize

    • @preethaparthan531
      @preethaparthan531 5 років тому

      @@AdnanAfzal565 Great info Can we add a delete file option next to the download links? Can you help with the code please.

  • @mahmoudnasr7104
    @mahmoudnasr7104 4 роки тому

    It's very simple ... thanks a lot

  • @myintthuaung1482
    @myintthuaung1482 4 роки тому

    Thank you so much, its really helpful.

  • @zerocruch
    @zerocruch 6 років тому +1

    Please can you put the download file i need it

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      Sure. I will soon upload it on some git repository and will share link with you.

  • @asikurbd
    @asikurbd 4 роки тому

    3 mb up file size. cannot be uploaded.. but why??

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      upload_max_filesize = 2M
      post_max_size = 2M
      Search these values in php.ini and update them to 10M or higher.

  • @MuhammadAbdullahMirza
    @MuhammadAbdullahMirza 5 років тому +1

    Very Good & simple video

  • @veenisazta1582
    @veenisazta1582 6 років тому +1

    How we can download files from file zila to local server ?

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      You can right click on file you want to download and click "export to local"

    • @veenisazta1582
      @veenisazta1582 6 років тому

      Adnan Afzal I want to download complete folder from file zila (sftp protocol) to local server using php

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      Okay. I will shortly provide you tutorial for that too.

    • @veenisazta1582
      @veenisazta1582 6 років тому +1

      Adnan Afzal thank u ...

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      here is your requested tutorial: ua-cam.com/video/91glKPKpogE/v-deo.html
      please let me know if you have any issues

  • @andyjohn907
    @andyjohn907 4 роки тому +1

    thanks you really helped me..

  • @mukrihome
    @mukrihome 4 роки тому

    whenever i am downloading its say failed no file

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      Make sure the path of file in server is correct. You need to give full file name including the extension.

  • @abhithakur5403
    @abhithakur5403 3 роки тому

    Hello, how can i upload in sketchware

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      You need to develop a new app for this, sketchwsre is quite different. You can follow this:
      adnan-tech.com/profile-update-with-picture-android-java-php-and-mysql/

  • @chandrapratama7644
    @chandrapratama7644 4 роки тому

    Not use Database ??

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      You mean you want to download the file saved in the database? And save the uploaded file path in the database?

    • @chandrapratama7644
      @chandrapratama7644 4 роки тому

      @@AdnanAfzal565 yes I want to download and upload the save file in the mysql database, can you know your script can be used in the database ??

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      You can follow below tutorial to fetch and save data in database:
      ua-cam.com/video/oie6T8IVeMA/v-deo.html

    • @chandrapratama7644
      @chandrapratama7644 4 роки тому

      @@AdnanAfzal565 oke tanks for to be information

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

    can you please send the source code

  • @djdamo6854
    @djdamo6854 6 років тому +3

    pls code

    • @AdnanAfzal565
      @AdnanAfzal565  5 років тому

      Here it is:
      adnan-tech.com/tutorial/upload-download-and-delete-files-php

  • @Ember_magyar
    @Ember_magyar 2 роки тому

    it working in html file?

  • @emraneklaai1808
    @emraneklaai1808 4 роки тому

    thank you sir ! you very helping me !

  • @CuriousTV20
    @CuriousTV20 2 роки тому

    Very useful thank u♥

  • @marcostark8926
    @marcostark8926 6 років тому +2

    Thank you for this tutorial :)

  • @robertoaguiar6230
    @robertoaguiar6230 4 роки тому

    Can I do that with just html?

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      You can do the download with HTML. But upload cannot be done with only HTML.

  • @priyankaa9322
    @priyankaa9322 3 роки тому

    you r amazing. thank you

  • @rufinohernandez1636
    @rufinohernandez1636 6 років тому

    Funciona correctamente, necesito almacenar la ruta en una base de datos (MySQL)subiendo archivos .doc, .pdf con opciones para ver y descargar(Bueno eso la tiene en este ejemplo)...Alguna sugerencia !!

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      I didn't understand that. But I can tell that you are having problem in your MySQL database and may be unable to download or upload .pdf or .doc file ?

  • @deepujojo4914
    @deepujojo4914 3 роки тому

    Awesome . Thank you

  • @fmfeldsalat8744
    @fmfeldsalat8744 4 роки тому

    Thanks This is a very usefull tutorial but i have a question how can i run it on a server becouse i want to upload a file on my pc and download it on a nother pc. it would be very nice if somone can help me. (sorry for my bad english :) )

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      You can simply upload this code to a hosting server. Upload the file from 1 PC. Access the web page from 2nd PC and download the file.

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

    On point 🙌🙌🙏

  • @ff_tournament_bls
    @ff_tournament_bls 4 роки тому

    How to download your code

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      Link is in the description. You need to register an account to download.

  • @jokerry9627
    @jokerry9627 6 років тому

    I used the upload.php in the end of the file, the last 2 lines, the code cannot download any file. Note: I used it to my website not for local host.
    upload file

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      Just print_r($files) and see the files returned.

    • @jokerry9627
      @jokerry9627 6 років тому

      Failed- No file

    • @jokerry9627
      @jokerry9627 6 років тому

      Failed - No File

    • @jokerry9627
      @jokerry9627 6 років тому

      outp put is :
      New Text Document (9).txt
      Array ( [0] => . [1] => .. [2] => New Text Document (9).txt
      so, when I click on the > its output is:
      Failed - No File

  • @thedevelopers3811
    @thedevelopers3811 5 років тому +1

    good , very helpfull

  • @mas_lum
    @mas_lum 5 років тому

    kalo untuk menghapus file bagaimana ?

  • @saiqajutt5550
    @saiqajutt5550 4 роки тому

    not working ..

  • @arbazahmed1060
    @arbazahmed1060 6 років тому

    Does this work on mobike

  • @shreepadsarmalkar4075
    @shreepadsarmalkar4075 6 років тому +1

    great work bhai

  • @zinkyawmoe5725
    @zinkyawmoe5725 5 років тому +1

    helpful tutorial

  • @pulidivya5863
    @pulidivya5863 3 роки тому

    Thankyou so much

  • @shrinjoysaha
    @shrinjoysaha 5 років тому +1

    Great video

  • @islamersure9415
    @islamersure9415 4 роки тому

    helpfull.thanks

  • @openarenaShow2012
    @openarenaShow2012 6 років тому +1

    thank you so much

  • @karukkuvelraja8179
    @karukkuvelraja8179 5 років тому

    Internal server error

  • @hajimohammed968
    @hajimohammed968 6 років тому +1

    Legit life saver!!!

  • @jonaspalmiano7211
    @jonaspalmiano7211 5 років тому +1

    THANK YOU :)

  • @muhammadiqbalkaplale8220
    @muhammadiqbalkaplale8220 3 роки тому

    terima kasih, sangat berguna. tapi untuk menghapus masih tidak berfungsi.

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      kesalahan apa yang Anda lihat?

    • @muhammadiqbalkaplale8220
      @muhammadiqbalkaplale8220 3 роки тому

      @@AdnanAfzal565 tidak muncul pesan kesalahan. tolong berikan tutorial penggunaan unlink untuk penghapusan file. terima kasih

    • @AdnanAfzal565
      @AdnanAfzal565  3 роки тому

      @@muhammadiqbalkaplale8220 tutorial ini memiliki fungsi unlink. periksa apakah Anda memiliki izin menulis.

  • @giorgilabadze1
    @giorgilabadze1 4 роки тому

    not working

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому +1

      What error are you seeing ?

    • @giorgilabadze1
      @giorgilabadze1 4 роки тому

      @@AdnanAfzal565 first of all thanks for reply it is really kind of you. so i uploaded file in file manager on 000webhost.com

    • @AdnanAfzal565
      @AdnanAfzal565  4 роки тому

      @@giorgilabadze1 It may not work on free hosting servers, they are limited in some aspects. Try uploading on some dedicated or shared server.

  • @albertganteng7261
    @albertganteng7261 4 роки тому

    Thank You

  • @pondybook7622
    @pondybook7622 5 років тому +1

    Thanks bro,

  • @kerboplaytv8744
    @kerboplaytv8744 6 років тому +1

    wow that into = like

    • @AdnanAfzal565
      @AdnanAfzal565  6 років тому

      I got it from here:
      www.fiverr.com/rizwanafzal1988/do-intro-video-for-youtube-of-caveman-breaking-stone?ref_ctx_id=11e71513-b629-48f5-a269-fc667f45e7dd

  • @mazharnadeem8358
    @mazharnadeem8358 5 років тому +1

    amazing

  • @reskyantopaledangmailcom
    @reskyantopaledangmailcom 4 роки тому

    good tutorial

  • @javar1987
    @javar1987 4 роки тому

    Super nice

  • @hammadahmad7293
    @hammadahmad7293 6 років тому +2

    Helpfull (Y)