Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > สอบถามวิธีดึงค่าจากฐานข้อมูลออกมาโชว์เป็น Check Box เพื่ออัพเดตข้อมูล



 

สอบถามวิธีดึงค่าจากฐานข้อมูลออกมาโชว์เป็น Check Box เพื่ออัพเดตข้อมูล

 



Topic : 033012



โพสกระทู้ ( 114 )
บทความ ( 0 )



สถานะออฟไลน์




ตอนนี้สร้าง check box อันนึงค่ะ แล้วค่านั้นจะบันทึกลงฐานข้อมูลเป็น 1(ติ๊กถูก) กับ 0 (ไม่ติ๊ก) ปัญหาอยู่ที่ว่าเวลาดึงออกมาโชว์เพื่ออัพเดตข้อมูลค่ะ ต้องทำยังไงเหรอคะ ว่าถ้าค่าในฐานข้อมูลมีค่าเท่ากับ 1 แล้วตัว checkbox นั้นต้องแสดงเครื่องหมายถูกในตัว checkbox แต่ถ้าค่าเป็น 0 ไม่ต้องโชว์เครื่องหมายถูกแค่โชว์ตัว checkbox ธรรมดาเท่านั้น รบกวนผู้รู้ด้วยนะคะ พอดีมือใหม่ค่ะ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-10-13 16:04:37 By : woman View : 7348 Reply : 26
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

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
 


 

No. 2



โพสกระทู้ ( 114 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณมากค่ะ
Date : 2009-10-14 09:54:04 By : atomy_mink
 

 

No. 3

Guest


เจอปัญหาเดียวกันคะ คือมันไม่โชว์ แต่อันนี้มันมีมากกว่า 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 : มือใหม่
 


 

No. 4



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


ทำไมไม่เอา $Function_machine.. ไปใส่ใน value= ละครับ ถ้ามันเป็นค่าที่เก็บคล้ายๆ 1,0 เหมือน จกท.
Date : 2010-06-29 11:41:14 By : 50121680
 


 

No. 5

Guest


หมายถึงแบบนี้รึเปล่าคะ
<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 : มือใหม่
 


 

No. 6

Guest


ทำมาแล้ว ได้แบบนี้อ่ะคะ แต่ไม่ลง หนูผิดตรงไหนบ้างค่ะ
<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 : มือใหม่
 


 

No. 7



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


อ่อครับ
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
 


 

No. 8

Guest


ลืมบอกไปค่ะ คือไม่ได้เก็บค่า 1,0 คะ คือถ้าติ๊กถูกจะเก็บค่าคือของมันคือ Offices,Internet,สารบรรณฯ,Server,Other คะ ถ้าตัวไหนไม่ติ๊กก็ไม่เก็บคะ
Date : 2010-06-29 12:55:46 By : มือใหม่
 


 

No. 9



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


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
 


 

No. 10

Guest


อ่านแล้วไม่รู้ว่าจะอธิบายไงต่อ แต่ลองดูเพื่อเข้าใจขึ้น
( แต่การเขียนแบบนี้ไม่ดีนะ ครับ )
<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 : โปรเกรมอน
 


 

No. 11

Guest


ขอบคุณมากมายเลยค่ะ ได้แล้วค่ะ ขอบคุณมากๆค่ะ ถ้าเกิดปัญหาอะไรอีกเดี๋ยวจะมาปรึกษาใหม่นะค่ะ
Date : 2010-06-29 13:28:26 By : มือใหม่
 


 

No. 12

Guest


คือว่า มันโชว์ได้แล้วคะ แต่ทีนี้มันไม่ลงฐานค่ะ
ทำไงดีค่ะ
Date : 2010-06-29 15:22:23 By : มือใหม่
 


 

No. 13



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


ก็ลอง Code (PHP)
INSERT INTO table_name(column_name,...) VALUES ('$_REQUEST[Function_machine...]',...);

Date : 2010-06-29 15:26:26 By : 50121680
 


 

No. 14

Guest


ยังไม่ได้คะ อยากให้พี่ช่วยดูโค้ดให้หน่อยนะคะ

<?
$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 : มือใหม่
 


 

No. 15



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


ที่ไม่ได้หมายถึง ข้อมูลไม่เข้าใช่ไหมครับ

ลอง echo ค่า
$MAC_address
และ
$_POST['MAC_address']
ว่ามีค่ามาหรือไม่

แล้วตรง SQL INSERT คุณใช้
$MAC_address
แทน
$_REQUEST['MAC_address']
ได้เลยครับ

และก็ตัวแปรอื่นๆด้วยนะครับ
Date : 2010-06-29 16:16:52 By : 50121680
 


 

No. 16

Guest


ได้แล้วค่ะ ขอบคุณมากๆเลยค่ะ
Date : 2010-06-30 16:42:26 By : มือใหม่
 


 

No. 17

Guest


เจอปัญหาใหม่แล้วค่ะ คือโค้ดพวกนี้ค่ะ
echo $MAC_address=$_POST['MAC_address'];

พอใช้แล้วข้อมูลลงฐานค่ะ แต่พอกด submit ข้อมูลมันออกมาโชว์หน้าจออะคะ ทำไงคะ

การทำงานมันคืองี้คะ พอกรอกข้อมูลเสร็จแล้วกด submit มันจะ action ไปหน้า แก้ไขเลย คือ กรอกปุ๊บ ตกลง
ข้อมูลจะขึ้นมาโชว์เพื่อแก้ไข แต่ตอนนี้คือถ้ากรอกเสร็จ ยืนยันเลย โดยไม่มีการแก้ไข ข้อมูลจะลงฐานคะ
แต่ถ้ามีการแก้ไขข้อมูลจะไม่ลงเลยค่ะ ทำไงค่ะ
Date : 2010-07-01 13:44:42 By : มือใหม่
 


 

No. 18

Guest


นี้คือโค้ดหน้า 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 : มือใหม่
 


 

No. 19

Guest


อันนี้คือโค้ดหน้าเรียกให้ขึ้นมาโชว์ค่ะ
<?
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 : มือใหม่
 


 

No. 20



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


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
 


 

No. 21

Guest


มันเข้าฐานแล้วค่ะ แต่ถ้ามีการแก้ไขในหน้าที่โชว์ข้อมูลขึ้นมันไม่ทำการแก้ให้อ่ะคะ

แล้วก็ข้อมูลที่มันขึ้นมาโชว์ ของโค้ดพวกนี้ละคะ ทำไงคะ
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 : มือใหม่
 


 

No. 22



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


คุณรุ้ได้ไงว่ามันเข้า ฐานข้อมูลแล้วหล่ะครับ SQL ผิดชัด ลองไปดูใน phpmyadmin ดีๆสิ
Date : 2010-07-01 14:57:25 By : 50121680
 


 

No. 23

Guest


ที่บอกว่าแล้วแล้วอ่ะคะ คือแก้เรียบร้อยแล้วคะดูในphpmyadmin เรียบร้อยคะ
Date : 2010-07-01 15:20:46 By : มือใหม่
 


 

No. 24



โพสกระทู้ ( 648 )
บทความ ( 0 )



สถานะออฟไลน์


Quote:
มันเข้าฐานแล้วค่ะ แต่ถ้ามีการแก้ไขในหน้าที่โชว์ข้อมูลขึ้นมันไม่ทำการแก้ให้อ่ะคะ


หรือคุณต้องการแบบนี้

Code (PHP)
<input type=text name=id value=<?php echo $MAC_address; ?>/>

Date : 2010-07-01 15:26:51 By : 50121680
 


 

No. 25

Guest


<input type=text name=id value=<?php echo $MAC_address; ?>/>

โค้ดนี้ก็ใช้อยู่คะตอนนี้ แต่มันก็ยังเหมือนเดิม คือมันแก้ไขได้ แต่มันไม่ save เป็นข้อมูลที่เราแก้ไขอ่ะคะ
Date : 2010-07-06 09:28:51 By : มือใหม่
 


 

No. 26

Guest


ไม่มีใครช่วยเลย........
Date : 2010-07-06 15:41:15 By : ดอเพ
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถามวิธีดึงค่าจากฐานข้อมูลออกมาโชว์เป็น Check Box เพื่ออัพเดตข้อมูล
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่