อยากสอบถามหน่อยพอดีจะเขียน ให้ ไฟล์PDF ที่อยู่ในโฟเดอร์เว็บไซด์ที่ทำอยู่ มาแสดงบนหน้าเว็บไซด์ ต้องเขียนแบบไหนหรอครับที่ต้องการจะโชว
ตอนนี้เก็บตัวแปร ชื่อไฟล์ ไว้แล้วครับ
ลองค้นหาหลายเว็บแล้วค่าก็ไม่ออกมา
// $file ชื่อโฟเดอร์ที่เก็บไฟล์+ชื่อไฟล์
//$filename ชื่อไฟล์
<?php
$filename = $_Get['name'];
$file = "myfile2/$filename";
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>
แสดงPDF บนหน้าเว็บไซด์ PHP
ตอนนี้เก็บตัวแปร ชื่อไฟล์ ไว้แล้วครับ
ลองค้นหาหลายเว็บแล้วค่าก็ไม่ออกมา
// $file ชื่อโฟเดอร์ที่เก็บไฟล์+ชื่อไฟล์
//$filename ชื่อไฟล์
<?php
$filename = $_Get['name'];
$file = "myfile2/$filename";
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
?>