คือไม่รู้ผิดตรงไหนครับ มันอ่าน PDF ไม่ได้น่ะครับ คือผมไปก็อปโค๊ดเขามาอีกทีนึงน่ะครับเพิ่งหัดทำครับ
Code (PHP)
<?php
@mysql_connect("localhost", "root", "password") or die(mysql_error());
mysql_select_db("mofintranet");
$id = $_GET['id'];
$sql = "SELECT * FROM uploadfiletom WHERE id = $id;";
$result = mysql_query($sql);
$type = mysql_result($result, 0,"type");
$pat_img = "^(image)";
$pat_swf = "(flash)$";
if(!eregi($pat_img, $type) && !eregi($pat_swf, $type)) {
$name = mysql_result($result, 0, "name");
$size = mysql_result($result, 0, "size");
$type = mysql_result($result, 0, "type");
$content = mysql_result($result, 0, "content");
header("Content-Type: $type");
header("Content-Length: $size");
header("Content-Disposition: attachment; filename=$name");
echo $content;
exit();
}
echo "<html><body>";
if(eregi($pat_img, $type)) {
echo "<img src=\"read_image.php?id=$id\" />";
}
else if(eregi($pat_swf, $type)) {
echo "<object width=468 height=60>
<param name=movie value=\"read_image.php?id=$id\" />
<embed width=468 height=60 src=\"read_image.php?id=$id\"></embed>
</object>";
}
echo "</body></html>";
?>
Tag : PHP
Date :
2012-04-30 14:40:57
By :
vipclubzaa
View :
1072
Reply :
3
หลัง จากที่ หากระทู้เก่าๆ ปัญหา อยู่ที่ <?php ob_start(); ?> ไว้บนสุด error หายไป แล้วครับ
แต่ปัญหา ใหม่คือ
เมื่อตอนนี้ สามารถ มี topup ให้กด download แล้ว แต่ file นั้น เป็น 0 byte น่ะครับ
จะทำไง ให้มัน download file จาก data base ได้ครับ
Date :
2012-05-02 14:20:16
By :
vipclubzaa
Load balance : Server 04