php チュートリアルは Word ドキュメントを生成し、コードをダウンロードします
include("include/conn_mysqltutorial.php");
$id=$_GET["id"];
$sql="select * from down where id=$id " ;
$result=mysql_query($sql);
$row=mysql_fetch_row($result);
$file2=$row["upload"];
function downFile($sFilePath)
{
if(file_exists($sFilePath) ) ; ($sFilePath);
ヘッダー ("Content-Disposition: 添付ファイル; ファイル名 = .basename($sFileName) );
ヘッダー ("Content-Length: " . $nFileSize);
ヘッダー ("Content-type: application/ octet-stream");
mb_convert_encoding(readfile($sFilePath),"utf-8","GB2312");
}
else
{
echo("ファイルが存在しません!");
}
}
downFile ($file2);
/*
*/