|
|
|
นำข้อมูลเข้าฐานข้อมูลไม่ได้ค่ะ รบกวนผู้รู้ช่วยตอบหน่อยนะค่ะ จะส่งงานอาจารย์แล้วค่ะ คือว่าไม่สามารถเอาข้อมูลเข้าไปในฐานข้อมูลได้ค่ะ |
|
|
|
|
|
|
|
อยู่พะเยาป่วเนี่ย ดูตรงคำสั่งqueryดีๆ ตรงกันับฐานป่าว ระวังคำสั่งexit();ด้วย
|
|
|
|
|
Date :
14 ต.ค. 2550 01:13:33 |
By :
makumi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ ที่ตอบ ไม่ได้อยู่พะเยาค่ะ อยู่นนทบุรีค่ะ คือ ตอนแรกลองแล้วข้อมูลเข้า แต่พอไปแก้ไขขื่อไฟล์อื่นที่จะให้โชว์บนหน้าเว็บ ข้อมูลใหม่ที่แก้ไป ก็ไม่เข้าไปอยู่ในฐานข้อมูลเลยค่ะ ไม่ทราบว่าจะแก้ยังไงดีค่ะ ช่วยหน่อยนะค่ะ
|
|
|
|
|
Date :
14 ต.ค. 2550 01:20:20 |
By :
ooy_kendo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเซฟรูปฐานกับfilephpมาให้ดูหน่อยจิ เผื่อจะได้เห็นชัดๆ
|
|
|
|
|
Date :
14 ต.ค. 2550 01:22:38 |
By :
makumi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?
if (! ($link = mysql_connect ("localhost", "root", "") ) )
{
print ("Unable to connect to database!");
exit ( );
}
mysql_select_db ("benefit_db", $link);
$sql = "select data from benefit_tb where name = '" . addslashes ($file) . "' ";
if (! ($result = mysql_query($sql, $link) ) )
{
print ("Bad file!");
exit();
}
$row = mysql_fetch_row($result);
$data = $row[0] ;
$mimetype = array (
'doc'=>'application/msword',
'eps'=>'application/postscript',
'htm'=>'text/html',
'html'=>'text/html',
'jpg'=>'image/jpeg',
'pdf'=>'application/pdf',
'txt'=>'text/plain',
'xls'=>'application/vnd.ms-excel'
);
//send file contents to output (Browser)
print ($data);
?>
ข้างบนนี้เป็นไฟล์เซฟ ส่วนด้านล่างเป็นไฟล์โชว์
<?
$data = "";
$fp = fopen ("concept.txt","r");
while (! feof ($fp) )
{
$data .= fread ($fp, 1024);
}
fclose($fp);
$data = addslashes ($data);
$data = addcslashes ($data, "\0");
$link = mysql_connect ("localhost", "root", "");
if (!$link)
{
print ("Error MySQL!");
exit();
}
mysql_select_db ("benefit_db", $link);
$sql = "INSERT INTO benefit_tb VALUES('concept.txt', '$data')";
if (! mysql_query ($sql, $link))
{
print("Insert failed!");
}
?>
ส่งโค๊ด มาให้ดค่ะ
|
|
|
|
|
Date :
14 ต.ค. 2550 01:34:03 |
By :
ooy_kendo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันดึกแล้ว ถ้าง่วงนอนแล้วตอบทางเมล์ หรือ msn ก็ได้ ดีมั๊ยค่ะ เมล์คือ [email protected] ค่ะ ขอบคุณนะ
|
|
|
|
|
Date :
14 ต.ค. 2550 01:38:33 |
By :
ooy_kendo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql = "INSERT INTO benefit_tb VALUES('concept.txt', '$data')";
ลืม$sหรือป่าว'$concept.txt'
ไม่ก็ลองใส่เป็นคู่ตามฐานข้อมูลตัวเอง เรียงจากบนลงล่างให้ถูกต้อง
ตัวอย่างเช่น "INSERT INTO benefit (user,password,)values('$user_reg','$pwd_reg')";
ก่อนvalueคือเอาตัวจาฐานข้อมูล หลังvalueเป็นต้นไปคือตัวแปรที่เรากำหนด
ลองดูนะ
|
|
|
|
|
Date :
14 ต.ค. 2550 01:54:09 |
By :
makumi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ จะลองทำดูค่ะ
|
|
|
|
|
Date :
14 ต.ค. 2550 22:53:20 |
By :
ooy_kendo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|