ช่วยดูโค้ดให้หน่อยค่ะ ตอนนี้เขียนโค้ดไว้อย่างนี้ค่ะ while( $row4=mysql_fetch_assoc($result4) )
รู้สึกว่า syntex จะผิดน่ะครับ
Date :
2009-06-09 11:08:16
By :
kanchen
ต้องแก้ตรงไหน ค่ะ ลองแก้แล้วยังแก้ไม่ได้เลย
Date :
2009-06-09 11:55:43
By :
ambelove
echo ค่าออกมาดูยังว่ามันมีค่าอยู่มั้ยลองเอาออกมาดูก่อนนะ
Date :
2009-06-09 12:19:20
By :
ชะเอม
ลอง echo ออกมาแล้ว ค่ามันออกมา แต่ส่งไปให้มันลิงค์ค่ามันไม่ไปค่ะ
Date :
2009-06-09 12:22:40
By :
ambelove
งั้นลองใส่ค่าไปใน hidden ลองดูแล้ว echo ออกมาดูก่อนว่ามาป่าว ถ้ามาแสดงว่าต้องใส่ hiddenละ สู้ๆนะ เด๋วไปกินข้าวก่อนเด๋วมาจ้ะ
Date :
2009-06-09 12:27:58
By :
ชะเอม
ลองใช้คำสั่ง var_dump(); หรือ print_r(); เืพื่อตรวจสอบค่าที่ได้ออกมาจากฐานข้อมูล นะครับ หลังจากนั้นก็ดูว่า array index ที่เราเรียกหา ถูกต้องตามชื่อฟิลด์หรือเปล่า สุดท้ายก็ให้ดู tag A ว่ามันเป็นรูปแบบที่จะส่งค่าไปให้หน้าที่เราต้องการได้หรือไม่
ถ้าจะให้เดาผมเดาว่า array index ที่เรียกใช้งาน น่าจะไม่มีอยู่จริง เพราะ syntax ไม่มีปัญหาอะไร
Date :
2009-06-09 13:36:03
By :
Ravatna
ลองแสดงค่าที่ดึงมาจากฐานข้อมูลแล้ว ดึงออกมาได้ และถูกด้วย มันติดอยู่อย่างเดียวคือจะส่งค่าลิงค์ให้อีกหน้าหนึ่ง ค่ามันไม่ส่งไปให้ค่ะ
Date :
2009-06-09 14:14:26
By :
ambelove
ยังทำไม่ได้เลยค่ะ ขณะใส่เป็นค่าคงที่แล้วมันยังไม่ค่าลิงค์ไปให้เลย
Date :
2009-06-09 18:09:14
By :
ambelove
ส่งเป็น hidden ก้อไม่ไปเหรอ งงจัง ขอดูโค้ดหน้าที่รับค่าหน่อยสิ
Date :
2009-06-09 18:11:34
By :
ชะเอม
<?php
if(isset($HerbRec_id)){
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("herbarium");
mysql_query("SET NAMES UTF8");
$sql="SELECT* FROM herb_recipe INNER JOIN disease ON (herb_recipe.Disease_id=disease.Disease_id) INNER JOIN source ON (herb_recipe.Source_id=source.Source_id) WHERE HerbRec_id LIKE '%$HerbRec_id%'";
$result=mysql_query($sql) or die ("ไม่สามารถ Query คำสั่งได้");
if($result){
$num=mysql_num_rows($result);
if($num==0){
echo"ไม่พบข้อมูล";
return;
}
else{
while($dbarr=mysql_fetch_array($result)){
$HerbRec_id=$dbarr['HerbRec_id'];
$HerbRec_blend=$dbarr['HerbRec_blend'];
$HerbRec_dec=$dbarr['HerbRec_dec'];
$HerbRec_dosage=$dbarr['HerbRec_dosage'];
$HerbRec_name=$dbarr['HerbRec_name'];
$Disease_id=$dbarr['Disease_id'];
$Disease_name=$dbarr['Disease_name'];
$Source_id=$dbarr['Source_id'];
$Source_name=$dbarr['Source_name'];
echo "<BR>";
echo"<table align=center width=570 border=0>";
echo "<tr align = center><td align = center bgcolor=#3366CC ><font color=#FFFFFF> ชื่อตำรับยาสมุนไพร </font></td><td align = left bgcolor=#006699 ><font color=#FFFFFF> $HerbRec_name </font></td></tr>";
echo "<tr align = center><td align = center bgcolor=#3366CC><font color=#FFFFFF> ชื่อโรคที่ใช้ตำรับยานี้ </font></td><td align = left bgcolor=#006699 ><font color=#FFFFFF> $Disease_name </font></td></tr>";
echo "<tr align = center><td align = center bgcolor=#3366CC><font color=#FFFFFF> ชื่อที่มาของตำรับยานี้ </font></td><td align = left bgcolor=#006699 ><font color=#FFFFFF> $Source_name </font></td></tr>";
echo "<tr height=20></tr>";
echo "<tr><td valign=middle align = center bgcolor=#006699 ><font color=#FFFFFF> ส่วนผสมมีดังนี้ </font></td></tr>";
//หาตำรับยาจาก Herb_content
$sql2="SELECT Herb_Content,Herb_Ratio,Unit_name
FROM herb_content INNER JOIN herb_recipe ON (herb_content.HerbRec_id=herb_recipe.HerbRec_id)
INNER JOIN herb ON (herb_content.Herb_id=herb.Herb_id)
INNER JOIN unit ON (herb_content.Unit_id=unit.Unit_id)
WHERE herb_recipe.HerbRec_id LIKE '%$HerbRec_id%'";
$result2=mysql_query($sql2) or die ("ไม่สามารถ Query คำสั่งได้");
if($result2){
/*$num2=mysql_num_rows($result2);
if($num2==0){
echo"ไม่พบข้อมูล";
return;
}
else{*/
echo "<tr height=5></tr>";
echo"<tr>";
while($row1=mysql_fetch_array($result2,MYSQL_ASSOC))
{
while(list($key1,$value1) = each($row1))
echo"<td align = center bgcolor=#3366CC><font color=#FFFFFF> ".$value1."</font></td>";
echo"</tr>";
}
//}
}//close IF sql2
$sql3="SELECT OtIngredient_content,OtIngredient_ratio,Unit_name
FROM other_ingredient_content INNER JOIN herb_recipe ON (other_ingredient_content.HerbRec_id=herb_recipe.HerbRec_id)
INNER JOIN other_ingredient ON (other_ingredient_content.OtIngredient_id=other_ingredient.OtIngredient_id)
INNER JOIN unit ON (other_ingredient_content.Unit_id=unit.Unit_id)
WHERE herb_recipe.HerbRec_id LIKE '%$HerbRec_id%'";
$result3=mysql_query($sql3) or die ("ไม่สามารถ Query คำสั่งได้");
if($result3){
/*$num3=mysql_num_rows($result3);
if($num3==0){
echo"ไม่พบข้อมูล";
return;
}
else{*/
echo"<tr>";
while($row2=mysql_fetch_array($result3,MYSQL_ASSOC))
{
while(list($key2,$value2) = each($row2))
echo"<td align = center bgcolor=#3366CC><font color=#FFFFFF> ".$value2."</font></td>";
echo"</tr>";
}
}
}//close sql3
echo "<tr height=20></tr>";
echo "<tr align = Left><td align = center bgcolor=#3366CC><font color=#FFFFFF> วิธีปรุงยา </font> </td><td align = left bgcolor=#006699 ><font color=#FFFFFF> $HerbRec_blend</font></td></tr>";
echo "<tr align = Left><td align = center bgcolor=#3366CC><font color=#FFFFFF> วิธีรับประทาน </font></td><td align = left bgcolor=#006699><font color=#FFFFFF> $HerbRec_dosage</font></td></tr>";
echo "<tr align = Left><td align = center bgcolor=#3366CC><font color=#FFFFFF> รายละเอียดเพิ่มเติม </font></td><td align = left bgcolor=#006699><font color=#FFFFFF> $HerbRec_dec </font></td></tr>";
echo "</table>";
}
}
}
else
echo ไม่มีตัวแปรที่ส่งมา
//}
?>
Date :
2009-06-09 18:16:24
By :
ambelove
เอ....รึว่าไม่ได้อยู่ภายใต้แท้ก form เหรอมันถึงไม่ไปอ่ะ(พยายามหาช่วยอยู่)
Date :
2009-06-09 18:16:59
By :
ชะเอม
แต่พอส่งตัวแปรอื่น มันรับค่าได้นะค่ะ แต่มันไม่ได้ตรงคำสั่งนี้อย่างเดียวเลย
Date :
2009-06-09 18:21:30
By :
ambelove
อืมมม ถ้าลองเปลี่ยนเป็นแบบนี้มันจะมาป่าว
<? echo "<tr><td><a href=Recipep.php?parameter=$HerbRec_id>$HerbRec_name</a></td><td>$rowSource_name</td></tr>";
?>
Date :
2009-06-09 18:53:53
By :
ชะเอม
ว่าแต่หน้าที่แสดงใน คห.10 นี่เป็นหน้ารับค่าใช่มั้ย
Date :
2009-06-09 18:54:56
By :
ชะเอม
เอาใหม่ๆ ลองเอานี่ไปวางไว้บนโค้ดดูดิ๊ว่าได้ป่าว(ไม่รู้ว่าจะได้ป่าว)
$HerbRec_id=$_POST['HerbRec_id'];
$HerbRec_name=$_POST['HerbRec_name'];
$rowSource_name=$_POST['rowSource_name'];
Date :
2009-06-09 18:56:56
By :
ชะเอม
วางไว้ที่ตรงไหนค่ะ ตรงหน้ารับตัวแปร หรือหน้าส่งตัวแปร
Date :
2009-06-09 19:11:13
By :
ambelove
ตรงหน้ารับจ้า ลองดูนะ
Date :
2009-06-10 08:40:28
By :
ชะเอม
ทำได้แล้วค่ะ แก้ตรงนี้
while( $row4=mysql_fetch_assoc($result4) )
{
echo "<tr><td><a href='Recipep.php?HerbRec_id =".$row4['HerbRec_id']."'>".$row4['HerbRec_name']."</a></td><td>".$row4['Source_name']."</td></tr>";
}
ขอบคุณคุณชะเอมมากค่ะที่ช่วยเหลือมาตลอด
Date :
2009-06-10 09:39:12
By :
ambelove
Load balance : Server 01