|
|
|
ช่วยดูหน่อยครับ ว่าผมจะใช้คำสั่งในการสร้างปุ่มค้นหายังไงดีครับ ลองแล้วแต่ไม่ได้ |
|
|
|
|
|
|
|
เท่าที่ดูมันก็น่าจะกดได้แล้วนี่นา ไม่ได้ยังไงเหรอครับ กดไม่ได้ กดไม่ไป หรือกดแล้วเปิดได้แต่ปลายทางมีปัญหา
|
|
|
|
|
Date :
2014-10-09 03:00:30 |
By :
meannerss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามภาพครับ ตรงคำว่าคนหาอะครับผมไม่รู้จะให้มันทำงานอย่างไง
Code (PHP)
<form action="" method="get">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><label for="txtsearch"></label>
<input type="submit" name="button" id="button" value="ค้นหา" />
<input type="text" name="txtsearch" id="txtsearch" /></td>
</tr>
</table>
</form>
<p><strong><font color="#FF0000">รายชื่อผู้เข้าสอบ</font></strong></p>
<p><?PHP echo $row['su_name']; ?> <?PHP echo $row['sb_name']; ?></p>
<table width="500" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="70" align="center" bgcolor="#000000"><font color="#FFFFFF"><strong>ลำดับที่</strong></font></td>
<td width="400" align="center" bgcolor="#000000"><strong><font color="#FFFFFF">ชื่อ - สกุล</font></strong></td>
<td width="100" align="center" bgcolor="#000000"><font color="#FFFFFF"><strong>ดูคะแนน</strong></font></td>
</tr>
<?PHP
$sql3 = "SELECT DISTINCT s_id , s_names , s_lastname from score where su_id = '$su_id' and sb_id = '$sb_id'";
$result3 = mysql_query($sql3)or die ( mysql_error());
while($row3 = mysql_fetch_array($result3)) {
$result5 = mysql_query($sql3);
$num2 = mysql_num_rows($result5);
for ( $i=1 ; $i<=$num2 ; $i++ ) {
?>
<tr>
<td align="center"><?PHP echo $i; ?></td>
<td><?PHP echo $row3['s_names'] ?> <?PHP echo $row3['s_lastname'];?></td>
<td align="center"><a href="sumkkk.php?s_id=<?PHP echo $row3['s_id']; ?>&su_id=<?PHP echo $su_id ?>&sb_id=<?PHP echo $sb_id ?>"><img src="viewIcon.png" width="30" height="30" border="0" /></a></td>
</tr>
<?PHP
} }
?>
</table>
และอีกอย่างคือ การนับลำดับ ด้วยอะครับ จะทำไงให้มัน นับ 1 2 3 ... อะครับ ช่วยหน่อยนะครับ
|
|
|
|
|
Date :
2014-10-09 14:19:17 |
By :
kenbongza1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1. ไปดูเรื่อง post กับ get ครับ
2. ถ้าไม่ต้องการให้ มัน ขึ้น ชื่อซ้ำ ตัด for ออก
หรือสร้างตัวแปร แถวไว้นอก while $Ln = 0;
แล้วก็เปลียน <td align="center"><?PHP echo $Ln++; ?></td>
|
|
|
|
|
Date :
2014-10-09 14:25:10 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|