|
|
|
ดึงรูปจากฐานข้อมูลไม่ได้ ข้อมูลอื่นๆสามารถดึงมาแสดงได้หมดมีเพียงรูปเท่านั้นที่ไม่สามารถดึงมาแสดงได้ |
|
|
|
|
|
|
|
ข้อมูลอื่นๆสามารถดึงมาแสดงได้หมดมีเพียงรูปเท่านั้นที่ไม่สามารถดึงมาแสดงได้....ท่านผู้ใดมีความรู้ช่วยแนะนำด้วยว่าต้องแก้ที่ได..อย่างไร.......ไม่ค่อยมีความรู้เกี่ยวกับเรื่องนี้..แต่ด้วยภาระและหน้าที่จำเป็นต้องทำทำ.............ทำ..และอยากจะทำเป็น......ขอความอนุเคราะห์ด้วย......
โค๊ดอัพข้อมูลลงฐานข้อมูล MySQL
?php require_once('Connections/downloads.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO submitaprogram (id_PROGRAM, PROGRAM, property, Image, Developer, Version, Platform, `Size`, `Date`, url) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['id_PROGRAM'], "int"),
GetSQLValueString($_POST['PROGRAM'], "text"),
GetSQLValueString($_POST['property'], "text"),
GetSQLValueString($_POST['Image'], "text"),
GetSQLValueString($_POST['Developer'], "text"),
GetSQLValueString($_POST['Version'], "text"),
GetSQLValueString($_POST['Platform'], "text"),
GetSQLValueString($_POST['Size'], "int"),
GetSQLValueString($_POST['Date'], "date"),
GetSQLValueString($_POST['url'], "text"));
mysql_select_db($database_downloads, $downloads);
$Result1 = mysql_query($insertSQL, $downloads) or die(mysql_error());
}
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">PROGRAM:</td>
<td><input type="text" name="PROGRAM" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Property:</td>
<td><input type="text" name="property" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Image:</td>
<td><label>
<input name="Image" type="file" id="Image" />
</label></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Developer:</td>
<td><input type="text" name="Developer" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Version:</td>
<td><input type="text" name="Version" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Platform:</td>
<td><input type="text" name="Platform" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Size:</td>
<td><input type="text" name="Size" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Date:</td>
<td><input type="text" name="Date" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Url:</td>
<td><input type="text" name="url" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="Insert record"></td>
</tr>
</table>
<input type="hidden" name="id_PROGRAM" value="">
<input type="hidden" name="MM_insert" value="form1">
</form>
<p> </p>
</body>
</html>
โค๊ดแสดงข้อมูล
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style2 {color: #999999}
-->
</style>
</head>
<body>
<div class="nnn">
<div align="left">
<table width="538" border="0">
<tr>
<td colspan="2" align="left" valign="top"><div align="left" class="style2"><?php echo $row_Recordset1['PROGRAM']; ?> Image overview</div></td>
</tr>
<tr>
<td width="51"><img src="<?php echo $row_Recordset1['Image']; ?>" /></td>/////บรรทัดแสดงรูปถูกต้องหรือเปล่า
<td width="477" valign="top"><?php echo $row_Recordset1['property']; ?></td>
</tr>
</table>
<p><br />
</p>
</div>
</div>
<div class="nnn">
<p class="title2"><b><?php echo $row_Recordset1['PROGRAM']; ?> Image Details</b></p>
<div>
<table width="539" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="96" align="left"><div align="left">Developer
:</div></td>
<td width="433"><div align="right"><?php echo $row_Recordset1['Developer']; ?></div></td>
</tr>
<tr>
<td align="left" bgcolor="#DFFFDF"><div align="left">Version : </div></td>
<td bgcolor="#DFFFDF"><div align="right"><?php echo $row_Recordset1['Version']; ?></div></td>
</tr>
<tr>
<td align="left"><div align="left">Platform : </div></td>
<td><div align="right">
<p><?php echo $row_Recordset1['Platform']; ?></p>
</div></td>
</tr>
<tr>
<td align="left" bgcolor="#DFFFDF"> File Size </td>
<td bgcolor="#DFFFDF"><div align="right"><?php echo $row_Recordset1['Size']; ?></div></td>
</tr>
<tr>
<td align="left"> Date Added </td>
<td><div align="right"><?php echo $row_Recordset1['Date']; ?></div></td>
</tr>
<tr>
<td align="left" bgcolor="#DFFFDF"> Rating</td>
<td bgcolor="#DFFFDF"><div align="right"><img src="Acronis True Image 9_0 - Free Download Acronis True Image by Acronis_files/small5stars.jpg" width="75" height="15" /></div></td>
</tr>
</table>
</div>
</div>
<div class="nnn">
<div><img src="imge_files/downloads.gif" width="20" height="15" /><a href="<?php echo $row_Recordset1['url']; ?>"> Download</a></div>
</div>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
19 พ.ย. 2549 13:22:37 |
By :
ruti |
View :
2046 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.ก่อนอืน ให้คุณ CHECK ข้อมูลใน DATA BASE ดูก่อนว่ามีข้อมูลภาพหรือ ไม่
2.ลอง echo echo $row_Recordset1['Image']; แล้วเห็นข้อมูลหรือไม่
3. Check ดู img src ระบุไว้ถูกต้องหรือไม่
<td width="51"><img src="<?php echo $row_Recordset1['Image']; ?>" /></td>/////บรรทัดแสดงรูปถูกต้องหรือเปล่า
ผมคิดว่าน่ะ path ที่คุณระบุรูปภาพไว้ ม่น่าจะถูกต้อง
<td width="51"><img src="imagesfolder/<?php echo $row_Recordset1['Image']; ?>" /></td>/////บรรทัดแสดงรูปถูกต้องหรือเปล่า
|
|
|
|
|
Date :
19 พ.ย. 2549 13:52:20 |
By :
aor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.ก่อนอืน ให้คุณ CHECK ข้อมูลใน DATA BASE ดูก่อนว่ามีข้อมูลภาพหรือ ไม่
ตอบ เช็คแล้ว.......[BLOB - 87 ไบต์]
2.ลอง echo echo $row_Recordset1['Image']; แล้วเห็นข้อมูลหรือไม่
ตอบ ไม่เห็น
3. Check ดู img src ระบุไว้ถูกต้องหรือไม่
<td width="51"><img src="<?php echo $row_Recordset1['Image']; ?>" /></td>/////บรรทัดแสดงรูปถูกต้องหรือเปล่า
ผมคิดว่าน่ะ path ที่คุณระบุรูปภาพไว้ ม่น่าจะถูกต้อง
<td width="51"><img src="imagesfolder/<?php echo $row_Recordset1['Image']; ?>" /></td>/////บรรทัดแสดงรูปถูกต้องหรือเปล่า
ตอบ เก็บรูปลงฐานข้มูลโดยตรง
ขอบคุณที่กรุณา......
|
|
|
|
|
Date :
19 พ.ย. 2549 14:26:47 |
By :
ruti |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fgghgh
|
|
|
|
|
Date :
19 พ.ย. 2549 23:21:51 |
By :
ghgf |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็นปัญหาแน่ๆล่ะครับเพราะว่ารูปมันเป็นไฟล์ ดึงขึ้นมาก็เป็นภาษาอะไรไม่รู้จิ แล้วกำหนดเป็น longblob ใช่มะล่ะ ทำไมไม่เก็บแค่ชื่อลง db แล้วเอารูปลง folder ล่ะครับง่ายกว่านี้เยอะครับ ถ้าทำแบบคุณแล้วถ้าคนใช้ข้อมูลเยอะๆ server ล่มแน่ๆ
|
|
|
|
|
Date :
20 พ.ย. 2549 15:20:36 |
By :
ไก่แสงทอง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เราก็เคยเป็นแก้ยังงี้นะต้องเปลี่ยนชื่อรูปในเว็ปเราให้ตรงกะชื่อรูปในโฟเดอร์ด้วย
ชื่อมันไม่ตรงกัน
|
|
|
|
|
Date :
14 ธ.ค. 2549 08:50:26 |
By :
เจ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fxgdfgfdg : 1 7: :
1:
|
|
|
|
|
Date :
3 ม.ค. 2551 08:47:50 |
By :
sss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|