|
|
|
การแก้ไขข้อมูล อ่า เป็นการแสดงข้อมูลเก่า default ซึ่งปัญหาคือ text มันแสดงข้อมูล แต่ redio button มันไม่แสดงอ่า ผู้รู้ช่วยทีครับ มีรูปให้ดู |
|
|
|
|
|
|
|
code ล่ะครับ
|
|
|
|
|
Date :
2011-12-17 23:00:00 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<input type="radio" name="sex" id="ชาย" value="ชาย" />
ชาย</label>
<label>
<input type="radio" name="sex" id="หญิง" value="หญิง" />
หญิง</label>
จากข้อมูลเก่าอ่า เปลี่ยนไง อิอิ
|
ประวัติการแก้ไข 2011-12-17 23:08:59
|
|
|
|
Date :
2011-12-17 23:07:51 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แปลงเพศ คับ
Code (PHP)
$row = mysql_fetch_assoc($query);
$m_gender = ($row['gender'] == 'M') ? ' checked="checked"' : '';
$f_gender = ($row['gender'] == 'F') ? ' checked="checked"' : '';
?>
<form id="edit-student-form" action="edit_student.php?id=<?php echo $std_id;?>" method="post">
<table width="100%" border="0" align="center" cellpadding="4" cellspacing="0" style="padding: 5px 0 5px 0">
<tr>
<td width="18%">รหัส นศ.</td>
<td width="82%"><?php echo $row['username'];?></td>
</tr>
<tr>
<td>เพศ</td>
<td><p>
<label>
<input name="gender" type="radio" id="gender_0" value="M"<?php echo $m_gender;?> />
ชาย</label>
<label>
<input type="radio" name="gender" value="F" id="gender_1"<?php echo $f_gender;?> />
หญิง</label>
|
ประวัติการแก้ไข 2011-12-17 23:35:21
|
|
|
|
Date :
2011-12-17 23:34:42 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดู Code ที่เค้าเขียนไว้ครับ
|
|
|
|
|
Date :
2011-12-18 08:04:57 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="radio" name="sex" <?if($result["sex"]=="ชาย"){?>checked<?}?>> ชาย</label>
<label>
<input type="radio" name="sex" <?if($result["sex"]=="หญิง"){?>checked<?}?>> หญิง
แก้แล้วอ่า แต่ก็ยังไม่ได้
|
|
|
|
|
Date :
2011-12-18 09:14:51 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<input type="radio" name="gender" <? if($result["Gender"]=="M"){ ?>checked<? } ?>> ชาย
<? if($k['ชื่อฟิลด์ในฐานข้อมูล']==' ค่าที่อยู่ในฟิลด์ สมมติเก็บเป็น Y '){ ?>checked<? } ?>>ชาย
<input type="radio" name="gender" <?if($result["Gender"]=="F"){?>checked<?}?>> หญิง
<? if($k[' ชื่อฟิลด์ ']==' ค่าที่อยู่ในฟิลด์ สมมติเก็บเป็น N '){ ?>checked<? } ?>>หญิง
|
|
|
|
|
Date :
2011-12-18 13:51:45 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<input type="radio" name="gender" <? if($k['sex']=='1'){ ?>checked<? } ?>>ชาย</label>
<label>
<input type="radio" name="gender" <? if($k[' sex']=='2'){ ?>checked<? } ?>>หญิง
แบบนี้ก็ไม่ได้อ่า นี้คือข้อมูลที่อยู่ใน ฐานข้อมูลอ่า ใครรู้ช่วยที
|
|
|
|
|
Date :
2011-12-18 14:48:27 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเก็บเป็น 1 2 ละครับ
|
|
|
|
|
Date :
2011-12-18 14:52:16 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรุณาเอาโค๊ดคุณมาดูดีกว่าครับ สับไปสับมา งงกันตาย
|
|
|
|
|
Date :
2011-12-18 15:11:33 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body,td,th {
font-family: Tahoma;
font-size: 12px;
color: #000000;
}
.style4 {color: #FFFFFF; font-weight: bold; }
.style12 {color: #000000; font-size: 16px; }
.style13 {font-size: 16px}
.style29 {font-size: 18px}
-->
</style>
</head>
<form action="phpMySQLEditRecordSave.php?CusID=<?=$_GET["CusID"];?>" name="frmEdit" method="post">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("ebandit");
$strSQL = "SELECT * FROM member WHERE CustomerID = '".$_GET["CusID"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not found CustomerID=".$_GET["CusID"];
}
else
{
?>
<body>
<table width="449" height="398" border="0" align="center">
<tr>
<td height="21" colspan="2" bgcolor="#666666"><img src="Image/menu/22.gif" width="471" height="48" /></td>
</tr>
<tr>
<td height="38" bgcolor="#CCCCCC"><span class="style12">รหัสผู้ใช้บัณฑิต:</span></td>
<td bgcolor="#CCCCCC"><span class="style29">
</span> <input name="CustomerID" type="text" id="email2" value="<?=$objResult["CustomerID"];?>" /></td>
</tr>
<tr>
<td width="150" height="38" bgcolor="#CCCCCC"><span class="style12">อีเมล์: *</span></td>
<td width="289" bgcolor="#CCCCCC"><input name="email" type="text" id="email" value="<?=$objResult["email"];?>" /></td>
</tr>
<tr>
<td height="37" bgcolor="#CCCCCC"><span class="style12">รหัสผ่าน: *</span></td>
<td bgcolor="#CCCCCC"><input name="password" type="password" id="password" value="<?=$objResult["password"];?>" /></td>
</tr>
<tr>
<td height="19" bgcolor="#666666"> </td>
<td bgcolor="#666666"><span class="style4">ข้อมูลทั่วไป</span></td>
</tr>
<tr>
<td height="34" bgcolor="#CCCCCC"><span class="style12">ชื่อ:</span></td>
<td bgcolor="#CCCCCC"><input name="name" type="text" id="name" value="<?=$objResult["name"];?>" /></td>
</tr>
<tr>
<td height="26" bgcolor="#CCCCCC"><span class="style12">นามสกุล:</span></td>
<td bgcolor="#CCCCCC"><input type="text" name="sname" id="sname" value="<?=$objResult["sname"];?>"/></td>
</tr>
<tr>
<td height="26" bgcolor="#CCCCCC"><span class="style12">เพศ:</span></td>
<td bgcolor="#CCCCCC"><label>
<input type="radio" name="gender" <? if($k['sex']=='1'){ ?>checked<? } ?>>ชาย</label>
<label>
<input type="radio" name="gender" <? if($k[' sex']=='2'){ ?>checked<? } ?>>หญิง
</label></td>
</tr>
<tr>
<td height="31" bgcolor="#CCCCCC"><span class="style12">เบอร์โทรศัพท์</span><span class="style13">:</span></td>
<td bgcolor="#CCCCCC"><input name="tell" type="text" id="tell" value="<?=$objResult["tell"];?>" /></td>
</tr>
<tr>
<td height="33" bgcolor="#CCCCCC"><span class="style12">หน่วยงาน:</span></td>
<td bgcolor="#CCCCCC"><input name="agen" type="text" id="agen" value="<?=$objResult["agen"];?>" /></td>
</tr>
<tr>
<td height="33" bgcolor="#CCCCCC"><span class="style13">สถานะ:</span></td>
<td bgcolor="#CCCCCC"><?=$objResult["Status"];?></td>
</tr>
<tr>
<td height="36" bgcolor="#CCCCCC"> </td>
<td bgcolor="#CCCCCC"><p>
<input name="Submit" type="submit" value="ยืนยัน" />
</p></td>
</tr>
</table>
</body>
</html>
{ <? }
นี้อ่าโคต ผิดตรงไหนอ่าช่วยดูหน่อยนะครับ ขอบคุณคับ
|
|
|
|
|
Date :
2011-12-18 15:38:20 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$objResult
Code (PHP)
$k
|
|
|
|
|
Date :
2011-12-18 15:43:40 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นหน้าแก้ไขข้อมูลนิ ใส่ value="" เข้าไปหน้าคำสั่ง php ด้วย
Code (PHP)
<input type="radio" name="gender" value=" ค่าใช้ เก็บเป็น 1 กับ 2 ใช่ป่าว " <? if($k['sex']=='1'){ ?>checked<? } ?>>ชาย
|
|
|
|
|
Date :
2011-12-18 19:50:47 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่า ได้แล้วครับ ขอบคุณทุกคนเลยนะครับที่ช่วยผม ซึ้งๆๆๆๆๆๆ ^^_^^
Code (PHP)
<input type="radio" name="sex" value="1"<? if($objResult['sex']=='1'){ ?>checked<? } ?>>ชาย</label>
<label>
<input type="radio" name="sex" value="2"<? if($objResult['sex']=='2'){ ?>checked<? } ?>>หญิง
|
|
|
|
|
Date :
2011-12-19 14:49:53 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อิอิ อีกนิดนึงอ่า textarea มันก็ไม่ขึ้นอ่า
ช่วยทีๆ
|
|
|
|
|
Date :
2011-12-20 15:12:31 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<textarea name="textarea" id="textarea" cols="100" rows="5" value="<?=$objResult["textarea"];?>"></textarea>
|
|
|
|
|
Date :
2011-12-20 15:13:40 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|