Coding download file dengan php

Download File

 Jika kita ingin mengganti nama file, dengan HTML5 kita bisa menambahkan 

Download File

Script Download File dengan PHP

contoh link download  ;

Download File

download.php

Artikel Rekomendasi

Artikel Terkait
  • Script PHP upload dan Simpan gambar di database mysqli
  • Membuang spasi di awal, tengah, dan akhir string di PHP
  • Konversi Bilangan dengan PHP
  • Multiple Insert, Update, Delete dengan PHP & MySQLi OOP
  • Sensor Nomor HP dengan PHP
  • Gambar tidak Tersimpan Saat Upload File
  • Free Aplikasi Ujian Online dengan PHP MYSQL
  • Menampilkan Data Terakhir Di Group By
  • Query Menghitung Field Berdasarkan Group di PHP MYSQL
  • Penjumlahan Pengurangan Perkalian dan Pembagian PHP

Diskusi

This short tutorial will help you to learn how to download a file with PHP.

Just follow the examples below to easily meet that goal.

If you want to make different types of files or images load the files directly into the drive of the user with PHP, you can run the readfile[] function.

Let’s see how to do it on the example of creating an image gallery, which will help the users to download image files using just one click.

In the example below, an image-gallery.php is generated and a code is placed inside it:



  
    
    Simple Image Gallery
    
      .img-box {
        display: inline-block;
        text-align: center;
        margin: 0 15px;
      }
    
  
  
    
  

So, in the example above, the download link points to the download.php file. The URL, on its turn, encompasses an image file name, just as a query string. Also, you can notice, that the urlencode[] function is applied for encoding the image file names in a way that they may be safely passed like a URL parameter. The reason is that file names may include unsafe URL characters. The entire code of the download.php, forcing image download looks as follows:

Other file formats such as pdf, doc, and so on, can also be downloaded in the way, demonstrated above.

It is crucial to consider that in the example above, the regular expression [line 8] doesn’t allow files with the names that start or end with a dot [.]. For example, you can use filenames such as books.jpg or Books.jpg but can’t use books.jpg., .kites.jpg, and so on.

Bài Viết Liên Quan

Toplist mới

Bài mới nhất

Chủ Đề