|
|
|
สอบถามวิธีดึงค่าจากฐานข้อมูลออกมาโชว์เป็น Check Box เพื่ออัพเดตข้อมูล |
|
|
|
|
|
|
|
Code (PHP)
<?
if($result["check"] == 1)
{
$chk = "checked";
}
else
{
$chk = "";
}
?>
<input type="checkbox" name="chkY" value="1" <?=$chk;?>>
|
|
|
|
|
Date :
2009-10-13 17:07:31 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
|
|
|
|
|
Date :
2009-10-14 09:54:04 |
By :
atomy_mink |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เจอปัญหาเดียวกันคะ คือมันไม่โชว์ แต่อันนี้มันมีมากกว่า 1 ค่าอ่ะคะ ทำไงค่ะ ช่วยหน่อยนะคะมือใหม่มากค่ะ
<?
$Function_machine1=$_POST['Function_machine1'];
$Function_machine2=$_POST['Function_machine2'];
$Function_machine3=$_POST['Function_machine3'];
$Function_machine4=$_POST['Function_machine4'];
$Function_machine5=$_POST['Function_machine5'];
?>
<td class="style2"><span class="style25">
<input type="checkbox" name="Function_machine1" value="Offices" />Offices
<input type="checkbox" name="Function_machine2" value="Internet" />Internet
<input type="checkbox" name="Function_machine3" value="สารบรรณฯ" />สารบรรณฯ
<input type="checkbox" name="Function_machine4" value="Server" />Server
<input type="checkbox" name="Function_machine5" value="Other" />Other
</span></td>
|
|
|
|
|
Date :
2010-06-29 11:38:02 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำไมไม่เอา $Function_machine.. ไปใส่ใน value= ละครับ ถ้ามันเป็นค่าที่เก็บคล้ายๆ 1,0 เหมือน จกท.
|
|
|
|
|
Date :
2010-06-29 11:41:14 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หมายถึงแบบนี้รึเปล่าคะ
<input type="checkbox" name="Function_machine1" value="<? echo $Function_machine1;?>" />Offices
<input type="checkbox" name="Function_machine2" value="<? echo $Function_machine2;?>" />Internet
<input type="checkbox" name="Function_machine3" value="<? echo $Function_machine3;?>" />สารบรรณฯ
<input type="checkbox" name="Function_machine4" value="<? echo $Function_machine4;?>" />Server
<input type="checkbox" name="Function_machine5" value="<? echo $Function_machine5;?>" />Other
แต่มันไม่โชว์ให้อ่ะคะ
|
|
|
|
|
Date :
2010-06-29 11:51:27 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำมาแล้ว ได้แบบนี้อ่ะคะ แต่ไม่ลง หนูผิดตรงไหนบ้างค่ะ
<td class="style2"><span class="style25">
<?
if($result["check"] == 1)
{
$chk = "checked";
}
else
{
$chk = "";
}
?>
<input type="checkbox" name="Function_machine1" value="$Function_machine1" <?=$chk;?>/>Offices
<input type="checkbox" name="Function_machine2" value="$Function_machine2" <?=$chk;?>/>Internet
<input type="checkbox" name="Function_machine3" value="$Function_machine3" <?=$chk;?>/>สารบรรณฯ
<input type="checkbox" name="Function_machine4" value="$Function_machine4" <?=$chk;?>/>Server
<input type="checkbox" name="Function_machine5" value="$Function_machine5" <?=$chk;?>/>Other
</span></td>
|
|
|
|
|
Date :
2010-06-29 12:44:48 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อครับ
Code (PHP)
<input type="checkbox" name="Function_machine1" value="<?php echo $Function_machine1;?>"<? if($Function_machine1=='1')echo "checked='checked'";?> />Offices
ตรงเช็ค if ใช้ไปเช็คกับค่าที่คุณเก็บนะครับ
เช่น
ต้องการให้ ติ๊กเมื่อ ค่าในฐานข้อมูลคือ 1 ก็ตามตัวอย่างครับ
|
|
|
|
|
Date :
2010-06-29 12:48:58 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลืมบอกไปค่ะ คือไม่ได้เก็บค่า 1,0 คะ คือถ้าติ๊กถูกจะเก็บค่าคือของมันคือ Offices,Internet,สารบรรณฯ,Server,Other คะ ถ้าตัวไหนไม่ติ๊กก็ไม่เก็บคะ
|
|
|
|
|
Date :
2010-06-29 12:55:46 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php $Function_machine1=1; ?>// สมมติค่า เป็๋น ถ้าของคุณก็เปลี่ยน 1 เป็นค่าของคุณครบ
Code (PHP)
<input type="checkbox" name="Function_machine1" value="<?php echo $Function_machine1; ?>" <? if($Function_machine1=='1')echo "checked='checked'";?> />Offices
|
|
|
|
|
Date :
2010-06-29 13:03:12 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่านแล้วไม่รู้ว่าจะอธิบายไงต่อ แต่ลองดูเพื่อเข้าใจขึ้น
( แต่การเขียนแบบนี้ไม่ดีนะ ครับ )
<input type="checkbox" name="Function_machine1" value="<? if($Function_machine1=='*********')echo "checked='checked'";?>" />Offices
<input type="checkbox" name="Function_machine2" value="<? if($Function_machine2=='*********')echo "checked='checked'";?>" />Internet
<input type="checkbox" name="Function_machine3" value="<? if($Function_machine3=='*********')echo "checked='checked'";?>" />สารบรรณฯ
<input type="checkbox" name="Function_machine4" value="<? if($Function_machine4=='*********')echo "checked='checked'";?>" />Server
.
.
.
<input type="checkbox" name="Function_machine100" value="<? if($Function_machine100=='*********')echo "checked='checked'";?>" />DDDDD
ตรง *** สีแดงก็แทนด้วยค่าที่เก็บเอาไว้
เช่น ถ้ามีการ check ที่ Offices ก็จะเก็บค่า `Offices` ลงในฐานข้อมูล(เข้าใจว่าเป็นงันจาก code ด้านบน ถ้าเป้นอย่างอื่นก็แล้วแต่.. )
พอดึงข้อมูลออกมา ก็เปลี่ยนตรง **** เป็น
( เอาค่าที่ดึงมาจาก DB เก้บใส่ตัวแปลด้วยนะครับ )
<input type="checkbox" name="Function_machine1" value="<? if($Function_machine1=='Offices')echo "checked='checked'";?>" />Offices
พอค่ามันตรงกัน มันก็จะแสดง code html checked='checked' ออกมา ( ทำให้ check box ถูก checked )
อื่น ๆ ลองดูนะครับ
|
|
|
|
|
Date :
2010-06-29 13:18:00 |
By :
โปรเกรมอน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากมายเลยค่ะ ได้แล้วค่ะ ขอบคุณมากๆค่ะ ถ้าเกิดปัญหาอะไรอีกเดี๋ยวจะมาปรึกษาใหม่นะค่ะ
|
|
|
|
|
Date :
2010-06-29 13:28:26 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือว่า มันโชว์ได้แล้วคะ แต่ทีนี้มันไม่ลงฐานค่ะ
ทำไงดีค่ะ
|
|
|
|
|
Date :
2010-06-29 15:22:23 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ลอง Code (PHP)
INSERT INTO table_name(column_name,...) VALUES ('$_REQUEST[Function_machine...]',...);
|
|
|
|
|
Date :
2010-06-29 15:26:26 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้คะ อยากให้พี่ช่วยดูโค้ดให้หน่อยนะคะ
<?
$MAC_address=$_POST['MAC_address'];
$Asset_number=$_POST['Asset_number'];
$Serial_number=$_POST['Serial_number'];
$Brand_com=$_POST['Brand_com'];
$Model_com=$_POST['Model_com'];
$Com_name=$_POST['Com_name'];
$Workgroup=$_POST['Workgroup'];
$Operating_system=$_POST['Operating_system'];
$Office=$_POST['Office'];
$CPU=$_POST['CPU'];
$RAM=$_POST['RAM'];
$IP_address=$_POST['IP_address'];
$Subnet_mask=$_POST['Subnet_mask'];
$Default_gateway=$_POST['Default_gateway'];
$LAN_num =$_POST['LAN_num'];
$Program_anti_virus=$_POST['Program_anti_virus'];
$Connected_together =$_POST['Connected_together'];
$Moniter_size=$_POST['Moniter_size'];
$Brand_sw_hub=$_POST['Brand_sw_hub'];
$Size_sw_hub=$_POST['Size_sw_hub'];
$Building_locat=$_POST['Building_locat'];
$Floor_locat=$_POST['Floor_locat'];
$Agencies_locat=$_POST['Agencies_locat'];
$No_room_locat=$_POST['No_room_locat'];
$Name_thai_respons=$_POST['Name_thai_respons'];
$Name_eng_respons=$_POST['Name_eng_respons'];
$Position_respons=$_POST['Position_respons'];
$Telephone=$_POST['Telephone'];
$Num_users=$_POST['Num_users'];
$Name_record=$_POST['Name_record'];
$Date=$_POST['Date'];
$Month=$_POST['Month'];
$Year=$_POST['Year'];
$Function_machine1=$_POST['Function_machine1'];
$Function_machine2=$_POST['Function_machine2'];
$Function_machine3=$_POST['Function_machine3'];
$Function_machine4=$_POST['Function_machine4'];
$Function_machine5=$_POST['Function_machine5'];
$Moniter_type1=$_POST['Moniter_type1'];
$Moniter_type2=$_POST['Moniter_type2'];
?>
<!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=tis-620" />
<title>แบบฟอร์มแก้ไขรายการคอมพิวเตอร์</title>
<style type="text/css">
<!--
.style2 {font-size: 14px; }
-->
</style>
</head>
<body>
<?
$hostname = "localhost";//=ชื่อโฮสต์
$usre = "root";//ชื่อผู้ใช้
$password ="root";//รหัสผ่าน
$dbname ="test";//ชื่อฐานข้อมูล
$tblname ="com";//ชื่อตาราง
//เริ่มติดต่อฐานข้อมูล
mysql_connect($hostname,$usre,$password)or die ("ติดต่อฐานข้อมูลไม่ได้");
//เลือกฐานข้อมูล
mysql_select_db($dbname) or die ("เลือกฐานข้อมูลไม่ได้");
$sql="INSERT INTO $tblname VALUES ('$_REQUEST[MAC_address]','$_REQUEST[Asset_number]','$_REQUEST[Serial_number]'
,'$_REQUEST[Brand_com]','$_REQUEST[Model_com]','$_REQUEST[Com_name]'
,'$_REQUEST[Workgroup]','$_REQUEST[Operating_system]','$_REQUEST[Office]'
,'$_REQUEST[CPU]','$_REQUEST[RAM]','$_REQUEST[IP_address]','$_REQUEST[Subnet_mask]','$_REQUEST[Default_gateway]'
,'$_REQUEST[LAN_num]','$_REQUEST[Program_anti_virus]','$_REQUEST[Connected_together]'
,'$_REQUEST[Moniter_size]','$_REQUEST[Brand_sw_hub]','$_REQUEST[Size_sw_hub]'
,'$_REQUEST[Building_locat]','$_REQUEST[Floor_locat]','$_REQUEST[Agencies_locat]'
,'$_REQUEST[No_room_locat]','$_REQUEST[Name_thai_respons]','$_REQUEST[Name_eng_respons]'
,'$_REQUEST[Position_respons]','$_REQUEST[Telephone]','$_REQUEST[Num_users]'
,'$_REQUEST[Name_record]','$_REQUEST[Date]','$_REQUEST[Month]','$_REQUEST[Year]'
,'$_REQUEST[Function_machine1]','$_REQUEST[Function_machine2]','$_REQUEST[Function_machine3]'
,'$_REQUEST[Function_machine4]','$_REQUEST[Function_machine5]',
'$_REQUEST[Moniter_type1]','$_REQUEST[Moniter_type2]')";//กำหนดคำสั่งsqlเพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่งsql
$dbquery=mysql_db_query($dbname,$sql);
//ปิดการติดต่อฐานข้อมูล
mysql_close();
?>
|
|
|
|
|
Date :
2010-06-29 15:53:58 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ ขอบคุณมากๆเลยค่ะ
|
|
|
|
|
Date :
2010-06-30 16:42:26 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เจอปัญหาใหม่แล้วค่ะ คือโค้ดพวกนี้ค่ะ
echo $MAC_address=$_POST['MAC_address'];
พอใช้แล้วข้อมูลลงฐานค่ะ แต่พอกด submit ข้อมูลมันออกมาโชว์หน้าจออะคะ ทำไงคะ
การทำงานมันคืองี้คะ พอกรอกข้อมูลเสร็จแล้วกด submit มันจะ action ไปหน้า แก้ไขเลย คือ กรอกปุ๊บ ตกลง
ข้อมูลจะขึ้นมาโชว์เพื่อแก้ไข แต่ตอนนี้คือถ้ากรอกเสร็จ ยืนยันเลย โดยไม่มีการแก้ไข ข้อมูลจะลงฐานคะ
แต่ถ้ามีการแก้ไขข้อมูลจะไม่ลงเลยค่ะ ทำไงค่ะ
|
|
|
|
|
Date :
2010-07-01 13:44:42 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี้คือโค้ดหน้า update คะ
<?
$MAC_address=$_POST['MAC_address'];
$Asset_number=$_POST['Asset_number'];
$Serial_number=$_POST['Serial_number'];
$Brand_com=$_POST['Brand_com'];
$Model_com=$_POST['Model_com'];
$Com_name=$_POST['Com_name'];
$Workgroup=$_POST['Workgroup'];
$Operating_system=$_POST['Operating_system'];
$Office=$_POST['Office'];
$CPU=$_POST['CPU'];
$RAM=$_POST['RAM'];
$IP_address=$_POST['IP_address'];
$Subnet_mask=$_POST['Subnet_mask'];
$Default_gateway=$_POST['Default_gateway'];
$LAN_num =$_POST['LAN_num'];
$Program_anti_virus=$_POST['Program_anti_virus'];
$Connected_together =$_POST['Connected_together'];
$Moniter_size=$_POST['Moniter_size'];
$Brand_sw_hub=$_POST['Brand_sw_hub'];
$Size_sw_hub=$_POST['Size_sw_hub'];
$Building_locat=$_POST['Building_locat'];
$Floor_locat=$_POST['Floor_locat'];
$Agencies_locat=$_POST['Agencies_locat'];
$No_room_locat=$_POST['No_room_locat'];
$Name_thai_respons=$_POST['Name_thai_respons'];
$Name_eng_respons=$_POST['Name_eng_respons'];
$Position_respons=$_POST['Position_respons'];
$Telephone=$_POST['Telephone'];
$Num_users=$_POST['Num_users'];
$Name_record=$_POST['Name_record'];
$Date=$_POST['Date'];
$Month=$_POST['Month'];
$Year=$_POST['Year'];
$Function_machine1=$_POST['Function_machine1'];
$Function_machine2=$_POST['Function_machine2'];
$Function_machine3=$_POST['Function_machine3'];
$Function_machine4=$_POST['Function_machine4'];
$Function_machine5=$_POST['Function_machine5'];
$Moniter_type1=$_POST['Moniter_type1'];
$Moniter_type2=$_POST['Moniter_type2'];
include"connect.php";
$sql = "UPDATE $tblname SET MAC_address ='$MAC_address',Asset_number ='$Asset_number'
,Serial_number ='$Serial_number',Brand_com ='$Brand_com ',Model_com='$Model_com='$Com_name'
,Com_name ='$Workgroup',Workgroup ='$Operating_system',Operating_system ='$Office',Office='$CPU',CPU='$RAM',RAM='$IP_address',IP_address='$Subnet_mask'
,Subnet_mask='$Default_gateway',Default_gateway='$LAN_num',LAN_num='$Program_anti_virus'
,Program_anti_virus='$Connected_together',Connected_together='$Moniter_size',Moniter_size='$Brand_sw_hub'
,Size_sw_hub='$Building_locat',Building_locat='$Floor_locat',Floor_locat='$Agencies_locat'
,Agencies_locat='$No_room_locat',No_room_locat='$Name_thai_respons',Name_thai_respons='$Name_eng_respons'
,Name_eng_respons='$Position_respons',Position_respons='$Telephone',Telephone='$Num_users'
,Num_users='$Name_record',Name_record='$Date',Date ='$Month',Month='$Year',Year='$Function_machine1',Function_machine1
='$Function_machine2',Function_machine2='$Function_machine3',Function_machine3='$Function_machine4'
,Function_machine4='$Function_machine5',Function_machine5='$Moniter_type1',Moniter_type1='$Moniter_type2'
,Moniter_type2 where MAC_address='$id_edit";
$result = mysql_db_query($dbname,$sql);
mysql_close();
?>
เป็นเพราะโค้ดหน้านี้หรือป่าวค่ะ
|
|
|
|
|
Date :
2010-07-01 13:48:42 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้คือโค้ดหน้าเรียกให้ขึ้นมาโชว์ค่ะ
<?
echo $MAC_address=$_POST['MAC_address'];
echo $Asset_number=$_POST['Asset_number'];
echo $Serial_number=$_POST['Serial_number'];
echo $Brand_com=$_POST['Brand_com'];
echo $Model_com=$_POST['Model_com'];
echo $Com_name=$_POST['Com_name'];
echo $Workgroup=$_POST['Workgroup'];
echo $Operating_system=$_POST['Operating_system'];
echo $Office=$_POST['Office'];
echo $CPU=$_POST['CPU'];
echo $RAM=$_POST['RAM'];
echo $IP_address=$_POST['IP_address'];
echo $Subnet_mask=$_POST['Subnet_mask'];
echo $Default_gateway=$_POST['Default_gateway'];
echo $LAN_num =$_POST['LAN_num'];
echo $Program_anti_virus=$_POST['Program_anti_virus'];
echo $Connected_together =$_POST['Connected_together'];
echo $Moniter_size=$_POST['Moniter_size'];
echo $Brand_sw_hub=$_POST['Brand_sw_hub'];
echo $Size_sw_hub=$_POST['Size_sw_hub'];
echo $Building_locat=$_POST['Building_locat'];
echo $Floor_locat=$_POST['Floor_locat'];
echo $Agencies_locat=$_POST['Agencies_locat'];
echo $No_room_locat=$_POST['No_room_locat'];
echo $Name_thai_respons=$_POST['Name_thai_respons'];
echo $Name_eng_respons=$_POST['Name_eng_respons'];
echo $Position_respons=$_POST['Position_respons'];
echo $Telephone=$_POST['Telephone'];
echo $Num_users=$_POST['Num_users'];
echo $Name_record=$_POST['Name_record'];
echo $Date=$_POST['Date'];
echo $Month=$_POST['Month'];
echo $Year=$_POST['Year'];
echo $Function_machine1=$_POST['Function_machine1'];
echo $Function_machine2=$_POST['Function_machine2'];
echo $Function_machine3=$_POST['Function_machine3'];
echo $Function_machine4=$_POST['Function_machine4'];
echo $Function_machine5=$_POST['Function_machine5'];
echo $Moniter_type1=$_POST['Moniter_type1'];
echo $Moniter_type2=$_POST['Moniter_type2'];
?>
<?
$hostname = "localhost";//=ชื่อโฮสต์
$usre = "root";//ชื่อผู้ใช้
$password ="root";//รหัสผ่าน
$dbname ="test";//ชื่อฐานข้อมูล
$tblname ="com";//ชื่อตาราง
//เริ่มติดต่อฐานข้อมูล
mysql_connect($hostname,$usre,$password)or die ("ติดต่อฐานข้อมูลไม่ได้");
//เลือกฐานข้อมูล
mysql_select_db($dbname) or die ("เลือกฐานข้อมูลไม่ได้");
$sql="INSERT INTO $tblname VALUES ('$MAC_address','$Asset_number','$Serial_number','$Brand_com','$Model_com','$Com_name'
,'$Workgroup','$Operating_system','$Office','$CPU','$RAM','$IP_address','$Subnet_mask'
,'$Default_gateway','$LAN_num','$Program_anti_virus','$Connected_together','$Moniter_size'
,'$Brand_sw_hub','$Size_sw_hub','$Building_locat','$Floor_locat','$Agencies_locat','$No_room_locat'
,'$Name_thai_respons','$Name_eng_respons','$Position_respons','$Telephone','$Num_users'
,'$Name_record','$Date','$Month','$Year','$Function_machine1','$Function_machine2'
,'$Function_machine3','$Function_machine4','$Function_machine5',
'$Moniter_type1','$Moniter_type2')";//กำหนดคำสั่งsqlเพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่งsql
$dbquery=mysql_db_query($dbname,$sql);
//ปิดการติดต่อฐานข้อมูล
mysql_close();
?>
|
|
|
|
|
Date :
2010-07-01 13:53:08 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SQL ผิดนะครับ
Code (PHP)
$sql = "UPDATE $tblname SET MAC_address ='$MAC_address',Asset_number ='$Asset_number'
,Serial_number ='$Serial_number',Brand_com ='$Brand_com ',Model_com='$Model_com='$Com_name'
,Com_name ='$Workgroup',Workgroup ='$Operating_system',Operating_system ='$Office',Office='$CPU',CPU='$RAM',RAM='$IP_address',IP_address='$Subnet_mask'
,Subnet_mask='$Default_gateway',Default_gateway='$LAN_num',LAN_num='$Program_anti_virus'
,Program_anti_virus='$Connected_together',Connected_together='$Moniter_size'
,Moniter_size='$Brand_sw_hub',Size_sw_hub='$Building_locat',Building_locat='$Floor_locat'
,Floor_locat='$Agencies_locat',Agencies_locat='$No_room_locat',No_room_locat='$Name_thai_respons'
,Name_thai_respons='$Name_eng_respons',Name_eng_respons='$Position_respons'
,Position_respons='$Telephone',Telephone='$Num_users',Num_users='$Name_record',Name_record='$Date'
,Date ='$Month',Month='$Year',Year='$Function_machine1',Function_machine1
='$Function_machine2',Function_machine2='$Function_machine3',Function_machine3='$Function_machine4'
,Function_machine4='$Function_machine5',Function_machine5='$Moniter_type1',Moniter_type1='$Moniter_type2'
,Moniter_type2 where MAC_address='$id_edit";
ดูดีๆ ตั้งแต่ Model COM
|
|
|
|
|
Date :
2010-07-01 13:53:28 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเข้าฐานแล้วค่ะ แต่ถ้ามีการแก้ไขในหน้าที่โชว์ข้อมูลขึ้นมันไม่ทำการแก้ให้อ่ะคะ
แล้วก็ข้อมูลที่มันขึ้นมาโชว์ ของโค้ดพวกนี้ละคะ ทำไงคะ
echo $MAC_address=$_POST['MAC_address'];
echo $Asset_number=$_POST['Asset_number'];
echo $Serial_number=$_POST['Serial_number'];....................
|
|
|
|
|
Date :
2010-07-01 14:44:26 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณรุ้ได้ไงว่ามันเข้า ฐานข้อมูลแล้วหล่ะครับ SQL ผิดชัด ลองไปดูใน phpmyadmin ดีๆสิ
|
|
|
|
|
Date :
2010-07-01 14:57:25 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่บอกว่าแล้วแล้วอ่ะคะ คือแก้เรียบร้อยแล้วคะดูในphpmyadmin เรียบร้อยคะ
|
|
|
|
|
Date :
2010-07-01 15:20:46 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type=text name=id value=<?php echo $MAC_address; ?>/>
โค้ดนี้ก็ใช้อยู่คะตอนนี้ แต่มันก็ยังเหมือนเดิม คือมันแก้ไขได้ แต่มันไม่ save เป็นข้อมูลที่เราแก้ไขอ่ะคะ
|
|
|
|
|
Date :
2010-07-06 09:28:51 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีใครช่วยเลย........
|
|
|
|
|
Date :
2010-07-06 15:41:15 |
By :
ดอเพ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|