ถ้าต้องการให้สามารถแสดงไฟล์ word ผ่านหน้าเว็บ โดยให้เปิดดูได้อย่างเดียว (ห้าม download) ภาษา php สามารถทำได้ไหมคะ
ตอนนี้ลองทำก็จะขึ้น pop up ให้ download อย่างเดียวเลยคะ
ถ้าใช้เป็น แบบนี้ก็จะแสดง pdf แต่ก็ยังสามารถ download ได้อยู่ดี Code (PHP)
<?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the end. */
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);
?>