|
|
|
ดึงข้อมูลไม่ได้ หนูต้องการจะดูว่าหนูดูขอ้มูลไม่ได้ part ที่เก็บชื่อ myfile |
|
|
|
|
|
|
|
$strSQL = "SELECT * FROM fiiles";
|
|
|
|
|
Date :
2009-11-11 13:59:54 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยนแล้วอะคะพี่มันฟ้องว่า
Error Query [SELECT * FROM files]
แก้ไงละเนี่ย
|
|
|
|
|
Date :
2009-11-11 14:08:36 |
By :
kabton_hok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สรุปใหม่ได้ไหมว่า db ชื่ออะไร table ชื่ออะไร
|
|
|
|
|
Date :
2009-11-11 14:10:30 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
db ชื่อ stkc_search
tb ชื่อ tb_files มี 2 ฟิล FilesID และ FilesName
พี่ช่วยแนะนำหน่อยนะค่ะ
|
|
|
|
|
Date :
2009-11-11 14:21:42 |
By :
kabton_hok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL = "SELECT * FROM tb_files";
ไม่แน่ใจนะ แต่ลงดูค่ะ
|
|
|
|
|
Date :
2009-11-11 14:40:22 |
By :
หยก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือว่ามันไม่มีข้อมูลอะคะ แต่ว่า คือ ทำแบบเป็น part แล้วให้ลงฐานข้อมูล ต้องใส่ตรงไหนอ่ะค่ะ
ถ้าโค้ดเป็นแบบนี้
<!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>
<?
if(copy($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"]))
{
echo "Copy/Upload Complete<br>";
//*** Insert Record ***//
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("stkc_search");
$strSQL = "INSERT INTO tb_files ";
$strSQL .="(FilesName) VALUES ('".$_FILES["filUpload"]["name"]."')";
$objQuery = mysql_query($strSQL);
}
?>
19.<a href="PageUploadToMySQL3.php">View files</a>
</body>
</html>
|
|
|
|
|
Date :
2009-11-11 14:49:26 |
By :
kabton_hok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ชื่อตารางผิดครับ
ครั้งหน้าถ้ามี error แนวนี้
ให้ทำแบบนี้นะครับ
echo $strSQL;
exit();
ให้มันแสดงผลของชุดคำสั่ง query ว่ามีค่าตามที่ต้องการไหม แล้วปิดไม่ให้ทำงาน ถ้าได้ผลค่อย ลบออก
Code (PHP)
<!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>
<?
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("stkc_search");
$strSQL = "select FilesID, FilesName from tb_files"; //ชื่อตารางผิดครับ
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="200" border="1">
<tr>
<th width="50"> <div align="center">Files ID </div></th>
<th width="150"> <div align="center">Files Name </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?> <tr>
<td><div align="center"><?=$objResult["FilesID"];?></div></td>
<td><center><a href="myfile/<?=$objResult["FilesName"];?>"><?=$objResult["FilesName"];?></a></center></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2009-11-11 15:18:52 |
By :
aknueng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอขอบคุณทุกๆท่านนะค่ะ คือว่าตอนนี้ upload file ไปไว้ใน part ได้แล้ว แต่มันไม่ยอมลงฐาน DB อ่ะค่ะ ต้องทำไงอะค่ะ
|
|
|
|
|
Date :
2009-11-11 15:27:09 |
By :
kabton_hok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|