|
|
|
สอบถาม การกดที่ Column แล้วจะมีการเรียงลำดับ ASC แล้วเมือกดอีกครั้งจะเปลี้ยนเป็น DESC ต้องกำหนดโค้ดอย่างไรคับ |
|
|
|
|
|
|
|
เดียวเย็น ๆ จะกลับมาเขียนให้ครับ
|
|
|
|
|
Date :
2011-05-27 14:45:05 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับพี่วิน^^
|
|
|
|
|
Date :
2011-05-27 14:47:50 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำเป็น list เรียงแล้วจากนั้นเลือก list แล้วกด submit จะไม่ดีกว่าหรือครับ
|
|
|
|
|
Date :
2011-05-27 15:50:35 |
By :
sleepington |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าพี่มีความรู้ในการทำlist ก้อช่วยชี้แนะด้วยครับ เอาอยากรู้หลายๆแบบ ครับ
,(มือใหม่อยากเขียน)
|
|
|
|
|
Date :
2011-05-27 16:29:46 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รอ ร๊อ รอ รอผู้รู้มาตอบ อยากรู้เหมือนกันคับ^^
|
|
|
|
|
Date :
2011-05-28 16:34:32 |
By :
GGG |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
http://web-programming-bookmark.blogspot.com/2011/05/php-sorting-head-builder-class-by-num.html
Code (PHP)
<?php
// ลองใช้คลาสตัวนี้ดูครับ
$sh = new SortHead(array('name','title','id'),'st','sd','id','desc');
/*
$sh = new SortHead(
array(รายชื่อของ field ในตารางที่สามารถเรียงลำดับได้),
'ชื่อตัวแปรที่เก็บค่าฟิลด์ที่ใช้ sort (อะไรก็ได้เช่น sort_field)',
'ชื่อของตัวที่เก็บทิศทางการ sort (อะไรก็ได้เช่น sort_dir)',
'ฟิลด์ sort เริ่มต้น',
'ทิศทางการ sort เริ่มต้น'
);
$sh->link('title') ....ลิงค์ที่จะใช้ sort ฟิลด์ title (สลับ asc/desc อัตโนมัติ)
$sh->dir('title') ...ทิศทางการ sort ในหน้าปัจจุบัน
*/
?>
<a href="<?php echo $sh->link('title') ?>">title <?php echo $sh->dir('title') ?></a>
|
|
|
|
|
Date :
2011-05-28 17:05:44 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเองก็รอคนตอบข้อนี้มานานแล้ว
เลยจะเสนอตอบเสียเองน่ะครับ ลองเอาโค้ดชุดนี้ไปรัน แล้วจะเห็นอะไรดีๆครับ
ขอให้มีความสุขน่ะครับ
Code (PHP)
<!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=UTF-8">
<title>Toggle Ordering</title>
<body>
<?php
include("connection.php");
/*
...
... ส่วนของการติดต่อกับดาต้าเบส
...
*/
if(isset($_GET["orderby"]) && !empty($_GET["orderby"])){
$orderString = $_GET["orderby"];
}else{
$orderString = "cname ASC";
}
if(strstr($orderString,"ASC")){
$toggleString = str_replace("ASC","DESC",$orderString);
}elseif(strstr($orderString,"DESC")){
$toggleString = str_replace("DESC","ASC",$orderString);
}
echo "<table><thead><tr><th width=\"40\">ลำดับ</th><th width=\"400\"><a href=\"?orderby=$toggleString\">ชื่อบริษัท</a></th><th width=\"200\">จังหวัด</th></tr></thead>";
echo "<tbody>";
$no=1;
$sql = "select cid,c_company,cprovince from customer order by $orderString";
echo $sql;
/*
$res = mysql_query($sql) or die(mysql_error());
while($data = mysql_fetch_assoc($result)){
echo "<tr><td>$no</td><td>{$data["c_company"]}</td><td>{$data["cprovince"]}</td></tr>";
$no++;
}
*/
echo "</tbody></table>";
?>
</body></html>
|
|
|
|
|
Date :
2011-05-29 22:27:04 |
By :
Unidentifier |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมก้อไม่เข้าใจอยู้ดีอ่าคับ ^^ คือผมมันฉลาดน้อยอ่ะคับ
ยังงัยก้อขอแบบที่เข้าใจง่าย แล้วก้อนำไปใช้กับ ข้อมูลของผมได้เลยอ่ะคับ^^ รบกวนด้วยนะคับ
ปวดหัวๆๆๆ เกิดมาทั้งทีดันโง่บรม
|
ประวัติการแก้ไข 2011-05-30 11:06:24
|
|
|
|
Date :
2011-05-30 11:05:55 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตกลงยังไม่ได้เหรอครับ
|
|
|
|
|
Date :
2011-05-30 11:31:17 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คับผม อยากให้พี่วินแนะนำหน่อยคับ
เอาแบบสไตล์พี่วินอ่ะคับ ผมว่าผมเข้าใจง่าย^^
|
|
|
|
|
Date :
2011-05-30 11:50:29 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เดียวตอนบ่ายเขียนให้แน่นอนครับ ไปทานข้าวก่อนครับ
|
|
|
|
|
Date :
2011-05-30 11:53:09 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSort = $_GET["sort"];
if($strSort == "")
{
$strSort = "CustomerID";
}
$strOrder = $_GET["order"];
if($strOrder == "")
{
$strOrder = "ASC";
}
$strSQL .=" order by ".$strSort." ".$strOrder." LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
$strNewOrder = $strOrder == 'DESC' ? 'ASC' : 'DESC';
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?sort=CustomerID&order=<?=$strNewOrder?>">CustomerID</a></div></th>
<th width="98"> <div align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?sort=Name&order=<?=$strNewOrder?>">Name</a></div></th>
<th width="198"><div align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?sort=Email&order=<?=$strNewOrder?>">Email</a></div></th>
<th width="97"> <div align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?sort=CountryCode&order=<?=$strNewOrder?>">CountryCode</a></div></th>
<th width="59"> <div align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?sort=Budget&order=<?=$strNewOrder?>">Budget</a></div></th>
<th width="71"> <div align="center"><a href="<?=$_SERVER["PHP_SELF"];?>?sort=Used&order=<?=$strNewOrder?>">Used</a></div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[PHP_SELF]?Page=$Prev_Page&sort=$strSort'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[PHP_SELF]?Page=$i&sort=$strSort'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[PHP_SELF]?Page=$Next_Page&sort=$strSort'>Next>></a> ";
}
mysql_close($objConnect);
?>
</body>
</html>
ตามนี้ครับ
|
|
|
|
|
Date :
2011-05-30 13:19:35 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับพี่วิน
แต่มีเรื่องจะรบกวนอีกนิ๊ดดด นึงคับ คือ ถ้าจะให้มั้นแสดงผลในหน้าเดิมที่เราอยู่อ่ะคับ คือเมื่อกดอยู่ในหน้า 8 ก้อให้มันแสดงหน้า 8
ตัวอย่าง
จากภาพกำลังอยู่หน้า 8 นะครับ อยากให้แสดงผลในหน้านี้ก่อนจะไปหน้าอื่นๆ
คือภาพจะมี ชื่อเข้าใช้ คือ 004 010 028 ตามลำดับ ในที่นี้ผมอยากให้เวลากดย้ำอีกที มันจะแสดง เป็น 028 010 004 นะครับ เพราะมันแสดง ในหน้าที่ 8 อ่ะครับ
รบกวนด้วยนะคับ^^
|
ประวัติการแก้ไข 2011-05-30 14:04:38
|
|
|
|
Date :
2011-05-30 14:02:40 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่งค่า &Page=<?=$Page;?> ไปด้วยครับ
Code (PHP)
<a href="<?=$_SERVER["PHP_SELF"];?>?sort=CustomerID&order=<?=$strNewOrder?>&Page=<?=$Page;?>">CustomerID</a>
|
|
|
|
|
Date :
2011-05-30 14:05:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆ คับพี่วิน
แต่ยังไม่ได้ตามที่ต้องการอ่ะคับ^^ รบกวนพี่มากไปแว้ว อิิอิ ยังงัยก้อขอบคุณมากๆ คับ
เด๋วผมลองฝึกทำด้วยตัวเองก่อนนะครับ แล้วจะมาขอความช่วยเหลือใหม่ครับ^^
|
ประวัติการแก้ไข 2011-05-30 14:31:39
|
|
|
|
Date :
2011-05-30 14:27:30 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอรบกวนอีกนิ๊ดนึงครับ
ส่งค่า &Page=<?=$Page;?> เรียกว่าค่าอะไรครับ แล้วค่านี้สามารถเปลี่ยนเป็นตัวอะไรได้บ้างครับ อยากรู้ทุกตัวเลยครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2011-05-30 14:49:01 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|