|
|
|
[PHP] เปิด file pdf อยากให้แสดง บน browser เลย ไม่อยากให้ขึ้น download |
|
|
|
|
|
|
|
Code (PHP)
<?php
$file = 'path/to/PDF/file.pdf';
$filename = 'filename.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>
ลองดูแบบนี้ครับ แต่ทั้งนี้อยู่ที่ Web Browser ด้วย
|
|
|
|
|
Date :
2015-03-18 15:49:39 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$file = 'xxx';
$filename = $_POST['txt'];
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>
ไม่รู้ว่า ผมใส่ path ถูกไหมครับ มันขึ้นเตือน ไม่สามารถโหลด pdf ได้ ครับ รบกวนช่วยดูให้หน่อยครับ
folder ใน htdocs ของผม ชื่อ xxx ที่เก็บ file pdf ไว้ครับ
ขอบคุณมากครับ
|
|
|
|
|
Date :
2015-03-18 16:25:52 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$file = 'xxx/ชื่อไฟล์.pdf';
|
|
|
|
|
Date :
2015-03-18 16:44:29 |
By :
ไม่ทราบแหล่งที่มา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับ
Code (PHP)
<?php
$file = "xxx/$filename";
$filename = $_POST['txt'];
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>
โหลด pdf ไม่ได้เหมือนเดิน ครับพี่ งง เลยครับ
|
|
|
|
|
Date :
2015-03-18 17:05:12 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$filename = $_POST['txt'];
$file = "xxx/$filename";
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>
|
|
|
|
|
Date :
2015-03-18 17:07:31 |
By :
ไม่ทราบแหล่งที่มา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
$file = "pathไฟล์ / ชื่อไฟล์";
$filename = $_POST['ชื่อไฟล์'];
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>
|
|
|
|
|
Date :
2020-06-09 15:35:35 |
By :
10205400562330636 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าต้องการให้มัน rotate 90 องศาด้วยเวลาเปิดขึ้นมาต้องทำยังไงหรอครับ
|
|
|
|
|
Date :
2022-01-28 11:15:05 |
By :
sainamfgp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|