Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Przesyłaj plik binarny z MySQL do pobrania za pomocą PHP

function getfile($blockid)
{
    global $msa_db;
    $sql = "select filename, filedata from blocks where blockid = '$blockid'";
    $query = mysql_query($sql, $msa_db);
    $result['filename'] = mysql_result($query,0,0);
    $result['filedata'] = mysql_result($query,0,1);
    return $result;

}

function download($fileinfo)
{
    $file = base64_decode($fileinfo['filedata']);
    header("Cache-Control: no-cache private");
    header("Content-Description: File Transfer");
    header('Content-disposition: attachment; filename='.$fileinfo['filename']);
    header("Content-Type: application/vnd.ms-excel");
    header("Content-Transfer-Encoding: binary");
    header('Content-Length: '. strlen($file));
    echo $file;
    exit;
}

$fileinfo = getfile($blockid);

download($fileinfo);


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Błąd importowania Pythona MySQLdb — Mac 10.6

  2. Importuj bazę danych MySQL, ale ignoruj ​​konkretną tabelę

  3. Ostrzeżenie:mysql_fetch_array():podany argument nie jest prawidłowym wynikiem MySQL

  4. MySQL:Jak dowiedzieć się, które tabele odwołują się do konkretnej tabeli?

  5. Usuń wszystkie wiersze z wyjątkiem pierwszego N z tabeli posiadającej jedną kolumnę