|
|
|
รบกวนช่วยดูโค๊ดให้หนูหน่อยค่ะ ใส่โค๊ดไปแล้วแต่ดึงข้อมูลไม่ขึ้นค่ะ รบกวนช่วยแนะนำด้วยนะค่ะ |
|
|
|
|
|
|
|
ตรวจสอบ $dbname ครับว่ามาจากไหน
ติดต่อฐานข้อมูลได้ไหม
|
|
|
|
|
Date :
2010-05-31 15:17:13 |
By :
onedan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง เปลี่ยนจาก mysql_fetch_row เป็น mysql_fetch_array ดูนะ
|
|
|
|
|
Date :
2010-05-31 15:34:51 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ เปลี่ยนจาก mysql_fetch_row เป็น mysql_fetch_array แล้ว
ขอบคุณนะค่ะ
|
|
|
|
|
Date :
2010-05-31 15:44:54 |
By :
nina^^ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วโค๊ดตัวนี้มันถูกหรือเปล่าค่ะ
รบกวนอีกที
<? session_start(); ?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include "connect_db.php";
$Name=$_POST[Name];
$Description=$_POST[Description];
$Group=$_POST[Group];
$Graph=$_POST[Graph];
$Target_Value_per=$_POST[Target_value_per];
$Frequency=$_POST[Frequency];
$Target_value_alien=$_POST[Target_value_alien];
$Note=$_POST[Note];
if ($Name=="" or $Description=="" or $Group==""or $Graph==""or $Target_value_per==""or $Frequency==""or $Target_value_alien==""or $Note=="") {
echo "<center><font color=red>กรูณากรอกข้อมูลให้ครบด้วยค่ะº</font><br>";
echo "<a href= ivar_form.php>กลับไปกรอกข้อมูล</a>";
}
exit();
$sql="insert into tbl_var ( Name, Description,Group,Graph,Target_value_per,Frequcrug,Target_value_alien,Note) values ($Name, '$Description', '$Group', '$Graph', '$Target_value_per', '$Frequcrug', '$Target_value_alien', '$Note')";
$result=mysql_db_query($dbname,$sql);
if ($result) {
echo "<h3>ข้อมูลของคุณถูกบันทึกแล้ว";
echo "<BR><BR><A Href=ivar_view.php>ดูข้อมูล</A>";
}
?>
</FORM>
|
|
|
|
|
Date :
2010-05-31 15:46:31 |
By :
nina^^ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา exit(); ไว้ใน if
if ($Name=="" or $Description=="" or $Group==""or $Graph==""or $Target_value_per==""or $Frequency==""or $Target_value_alien==""or $Note=="") {
echo "<center><font color=red>กรูณากรอกข้อมูลให้ครบด้วยค่ะº</font><br>";
echo "<a href= ivar_form.php>กลับไปกรอกข้อมูล</a>";
exit();
}
ตรง values ($Name, '$Description', ... ใส่ (') ให้ $Name ด้วย '$Name'
</FORM> ไม่ต้องมีมั่ง
|
|
|
|
|
Date :
2010-05-31 16:07:40 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หนูลองเปลี่ยนแล้วค่ะพี่ heng แต่มันก็ยังไม่ลงให้หนูเลยค่ะ
<?
include "connect_db.php";
$Name=$_POST[Name];
$Description=$_POST[Description];
$Group=$_POST[Group];
$Graph=$_POST[Graph];
$Target_Value_per=$_POST[Target_value_per];
$Frequency=$_POST[Frequency];
$Target_value_alien=$_POST[Target_value_alien];
$Note=$_POST[Note];
if ($Name=="" or $Description=="" or $Group==""or $Graph==""or $Target_value_per==""or $Frequency==""or $Target_value_alien==""or $Note=="") {
echo "<center><font color=red>กรูณากรอกข้อมูลให้ครบด้วยค่ะº</font><br>";
echo "<a href=ivar_form.php>กลับไปกรอกข้อมูล</a>";
exit();
}
$sql="insert into tbl_var values ('$Name', '$Description', '$Group', '$Graph', '$Target_value_per', '$Frequcrug', '$Target_value_alien', '$Note')";
$result=mysql_db_query($dbname,$sql);
if ($result) {
echo "ไม่สามารถบันทึกข้อมูลได้";
exit;
}
echo "<font color=#009999><b>ขอบคุณที่ให้ข้อมูล</b> </font><br><br>";
echo "<a href=ivar_view.php>คลิกที่นี่ เพื่อดูข้อมูล </a>";
?>
|
|
|
|
|
Date :
2010-05-31 16:13:00 |
By :
nina^^ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขึ้น Error หรือข้อความอะไรไหม
แก้ตรงนี้ ด้วย
if ($result) {
echo "ไม่สามารถบันทึกข้อมูลได้";
exit;
}
เป็น
if (!$result) {
echo "ไม่สามารถบันทึกข้อมูลได้";
exit();
}
|
|
|
|
|
Date :
2010-05-31 16:36:13 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|