|
|
|
ลำดับมันไม่เรียงอะค่ะทำไงอะค่ะ ช่วยหน่อยนะค๊ะ เมาหัวมึน เเล้วอะค่ะ |
|
|
|
|
|
|
|
แก้ตามนี้
Code (PHP)
$no=1;
//วนลูปเพื่อแสดงกระทู้ทั้งหมดออกมา 1 กระทู้ต่อ 1 บรรทัด
while ($row = mysqli_fetch_array($result)) {
$id = htmlspecialchars($row["qID"]);
$topic = htmlspecialchars($row["qTopic"]);
$name = htmlspecialchars($row["qName"]);
$num_answer = $row["qAnswerCount"];
//เอา ตรงนี้ ออกไปไว้นอก while
//$no=1;
//แปลงสตริงวัน/เวลาที่ได้จากฐานข้อมูลไปเป็นค่า Timestamp
$datetime = strtotime($row["qDate"]);
//แปลงค่า Timestamp ไปเป็นสตริงวัน/เวลาภาษาไทย
$thai_date = format_thai_date($datetime);
/* แสดงหัวข้อกระทู้เป็นไฮเปอร์ลิงค์ เมื่อคลิกจะเรียกไปยังเพจ admin_show_question.php พร้อมทั้งส่งหมายเลขกระทู้ไปให้ด้วย (โดยระบุ Query String ต่อท้าย) */
echo <<<HTMLBLOCK
<table width="100%" border="1" align="center" cellpadding="5" cellspacing="0" bordercolor="#000033">
<tr><td width="5%" bgcolor="#ffffff"><center><input type="checkbox" name="array_id[]" value="{$id}"></center></td>
<td width="10%" bgcolor="#ffffff"><center><b>{$no}</b></center></td>
<td width="10%" bgcolor="#ffffff"><center><b>{$id}</b></center></td>
<td width="20%" bgcolor="#ffffff"><a href="admin_show_question.php?id={$id}" target="_blank">{$topic}</a></td>
<td width="20%" bgcolor="#ffffff">{$name}</td><td width="15%" bgcolor="#ffffff"><center> ({$num_answer})</center></td><td width="15%" bgcolor="#ffffff"><center><img src="../images/old_clock.png"> [ {$thai_date} ]</center></td></tr></table>
HTMLBLOCK;
// เพิ่มตรงนีนะ
$no++;
}
|
|
|
|
|
Date :
2011-10-03 18:27:06 |
By :
nimporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆนะค่ะ
|
|
|
|
|
Date :
2011-10-03 18:36:10 |
By :
computersci |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สุดยอดไปเรย อิอิ เเล้วขอถามอีกเรื่องอะค่ะ ลบข้อมูลที่มัน join กัน 2 ตารางทำไงค่ะ
$sql= "select * from tblmemberdetail INNER JOIN tblmembers ON tblmemberdetail.ID=tblmembers.ID "; นี้คือคำสั่งที่เลือกมาเเสดง ถ้าให้ลบ ออกต้องเขียนคำสั่งยังไงค่ะ
|
|
|
|
|
Date :
2011-10-03 18:45:28 |
By :
computersci |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql= "select * from tblmemberdetail INNER JOIN tblmembers ON tblmemberdetail.ID=tblmembers.ID ";
Code (PHP)
$sql="
DELETE tbd
FROM tblmemberdetail tbd
INNER JOIN tblmembers tbm
ON tbd.ID = tbm.ID
WHERE tbm.ID = 'ID ที่ต้องการ'";
ลองดูนะ ว่าได้ป่าว
|
|
|
|
|
Date :
2011-10-03 19:04:45 |
By :
nimporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|