<?php
// Error reporting:
error_reporting(E_ALL^E_NOTICE);
// Including the connection file:
require('connect.php');
$id= $_GET['id'];
if(isset($_GET['action']))
{
$sql= "update ebook set downloads=downloads+1 where id = '$id'";
mysql_query($sql) or die ("Update error : $sql");
}
//readfile($filePath);
else error("This file does not exist!");
/* Helper functions: */
function error($str)
{
die($str);
}
?>
คือว่ามัน link ไปอีกหน้าหนึ่งและทำการ บันทึกลงฐานข้อมูลแต่ กลับไม่โชว์ไฟล์ pdf ที่ต้องการให้เปิดอะ ไม่รู้ต้องแก้ตรงจุดไหนคับ
มันก็ error นะึคับ
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\wwwroot\wwwroot\th\download.php:3)