|
|
|
ช่วย select รายละเอียดแบบสอบถามออกมาให้หน่อยค่ะ |
|
|
|
|
|
|
|
Code (PHP)
//เพศชาย
$Sql = mysql_query("select * from table where type='M' ");
//เพศหญิง
$Sql = mysql_query("select * from table where type='F' ");
|
|
|
|
|
Date :
2011-08-23 10:16:33 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนนี้ได้แล้ว ขอบคุณค่ะ
แต่มีอีกอย่างจะถามค่ะ คือ พอ select ออกมาได้แล้ว ตรง radio box จะให้มัย default ที่ YES แต่พอทำไปแล้ว
มัน default ที่บรรทัดสุดท้ายตัวเดียวค่ะ อยากให้ default YES ทั้งหมดเลยค่ะ
Code (PHP)
include("conn.php") ;
$sql1 = "SELECT * FROM chklist WHERE type2='F' ORDER BY chk_id ASC";
$sqlquery1=mysql_db_query($dbname, $sql1);
print ("<table width=90% border=0 align=center cellpadding=0 cellspacing=0>");
print ("<tr>");
print ("<td colspan=5><div align=left><span class=style9>Part I </span></div></td>");
print ("</tr>");
print ("<table width=90% border=1 align=center cellpadding=0 cellspacing=0>");
print ("<tr>");
print ("<td colspan=2 rowspan=2 height=40 background=img/bg3.gif><center><span clASs=style4>Ckecklist detail</span></center></td>");
print ("<td colspan=3 background=img/bg3.gif><center><span clASs=style4>$month / $year</span></center></td>");
print ("</tr>");
print ("<tr>");
print ("<td background=img/bg3.gif><div align=center><span clASs=style4>Yes</span></div></td>");
print ("<td background=img/bg3.gif><div align=center><span clASs=style4>No</span></div></td>");
print ("</tr>");
while($row=mysql_fetch_row($sqlquery1))
{
print ("<tr>");
print ("<td colspan=2><div align=left><span class=style2>$row[1]</div></span></td>");
print ("<td width=8%><center><input name=radiobutton type=radio value=Y checked=checked /></center></td>");
print ("<td width=8%><center><input name=radiobutton type=radio value=N /></center></td>");
print ("</tr>");
}
print ("</table>");
|
ประวัติการแก้ไข 2011-08-23 11:52:01
|
|
|
|
Date :
2011-08-23 11:50:09 |
By :
pumhonda |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$key = 0;
while($row=mysql_fetch_row($sqlquery1))
{
print ("<tr>");
print ("<td colspan=2><div align=left><span class=style2>$row[1]</div></span></td>");
print ("<td width=8%><center><input name=radiobutton[".$key."] type=radio value=Y checked=checked /></center></td>");
print ("<td width=8%><center><input name=radiobutton[".$key."] type=radio value=N /></center></td>");
print ("</tr>");
$key++;
}
ตัวอย่างการรับค่าแบบ multirecord
http://www.thaicreate.com/php/php-mysql-add-insert-multiple-record.html
|
ประวัติการแก้ไข 2011-08-23 12:14:03
|
|
|
|
Date :
2011-08-23 12:10:38 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|