|
|
|
จากโค้ตที่ให้ไป จะทำยังไงให้มันโชว์ทีละ 5 กิจกรรมค่ะ ช่วยเขียนโค้ดแทรกให้หน่อยค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<?php
function DateThai($strDate)
{
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strHour= date("H",strtotime($strDate));
$strMinute= date("i",strtotime($strDate));
$strSeconds= date("s",strtotime($strDate));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear, $strHour:$strMinute";
}
$strDate = "2008-08-14 13:42:44";
echo "ThaiCreate.Com Time now : ".DateThai($strDate);
?>
<?
include ("ConnectActivity.php");
mysql_query ("SET NAMES utf8") or die (mysql_errno());
$sql = "SELECT * FROM `activity`";
$result = mysql_query($sql);
echo "<table width='50%' border='1' bordercolor='' bgcolor='' ><tr align='center'>
<tr align='center'>
<td><b>วัน/เดือน/ปี</b></td>
<td><b>หัวข้อกิจกรรม</b></td>
<td><b>รายละเอียดกิจกรรม</b></td>
<td><b>รูปภาพกิจกรรม</b></td>
</tr>";
while($row=mysql_fetch_array($result)){
$date_activity = DateThai($row["date_activity"]);
$head_activity= $row["head_activity"];
$detail_activity = $row["detail_activity"];
$pic_activity= $row["pic_activity"];
echo "<tr align='center'>";
echo "<td>$date_activity</td>";
echo "<td>$head_activity</td>";
echo "<td>$detail_activity</td>";
echo "<td><img width=100 height=100 src='$pic_activity'></td>";
}
?>
แบบนี้อ่าค่ะ
Tag : PHP, MySQL, CakePHP
|
|
|
|
|
|
Date :
2012-01-14 00:33:21 |
By :
yokojung |
View :
1007 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จากตัวอย่างน่ะ แก้แค่
1. ชื่อฟิลด์ที่ต้องการให้แสดง
2. การเชื่อมต่อเบส
3. คำสั่งเรียกข้อมูล
|
|
|
|
|
Date :
2012-01-14 15:19:29 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 3 เขียนโดย : ozma เมื่อวันที่ 2012-01-14 15:19:29
รายละเอียดของการตอบ ::
แก้จนตาลาย ข้อมูลในตารางไม่ขึ้นอ่าค่ะ
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<?php
function DateThai($strDate)
{
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear";
}
$strDate = "2008-08-14 ";
?>
<?
class Paginator{
var $items_per_page;
var $items_total;
var $current_page;
var $num_pages;
var $mid_range;
var $low;
var $high;
var $limit;
var $return;
var $default_ipp;
var $querystring;
var $url_next;
function Paginator()
{
$this->current_page = 1;
$this->mid_range = 7;
$this->items_per_page = $this->default_ipp;
$this->url_next = $this->url_next;
}
function paginate()
{
if(!is_numeric($this->items_per_page) OR $this->items_per_page <= 0) $this->items_per_page = $this->default_ipp;
$this->num_pages = ceil($this->items_total/$this->items_per_page);
if($this->current_page < 1 Or !is_numeric($this->current_page)) $this->current_page = 1;
if($this->current_page > $this->num_pages) $this->current_page = $this->num_pages;
$prev_page = $this->current_page-1;
$next_page = $this->current_page+1;
if($this->num_pages > 10)
{
$this->return = ($this->current_page != 1 And $this->items_total >= 10) ? "<a class=\"paginate\" href=\"".$this->url_next.$this->$prev_page."\">« Previous</a> ":"<span class=\"inactive\" href=\"#\">« Previous</span> ";
$this->start_range = $this->current_page - floor($this->mid_range/2);
$this->end_range = $this->current_page + floor($this->mid_range/2);
if($this->start_range <= 0)
{
$this->end_range += abs($this->start_range)+1;
$this->start_range = 1;
}
if($this->end_range > $this->num_pages)
{
$this->start_range -= $this->end_range-$this->num_pages;
$this->end_range = $this->num_pages;
}
$this->range = range($this->start_range,$this->end_range);
for($i=1;$i<=$this->num_pages;$i++)
{
if($this->range[0] > 2 And $i == $this->range[0]) $this->return .= " ... ";
if($i==1 Or $i==$this->num_pages Or in_array($i,$this->range))
{
$this->return .= ($i == $this->current_page And $_GET['Page'] != 'All') ? "<a title=\"Go to page $i of $this->num_pages\" class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" title=\"Go to page $i of $this->num_pages\" href=\"".$this->url_next.$i."\">$i</a> ";
}
if($this->range[$this->mid_range-1] < $this->num_pages-1 And $i == $this->range[$this->mid_range-1]) $this->return .= " ... ";
}
$this->return .= (($this->current_page != $this->num_pages And $this->items_total >= 10) And ($_GET['Page'] != 'All')) ? "<a class=\"paginate\" href=\"".$this->url_next.$next_page."\">Next »</a>\n":"<span class=\"inactive\" href=\"#\">» Next</span>\n";
}
else
{
for($i=1;$i<=$this->num_pages;$i++)
{
$this->return .= ($i == $this->current_page) ? "<a class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" href=\"".$this->url_next.$i."\">$i</a> ";
}
}
$this->low = ($this->current_page-1) * $this->items_per_page;
$this->high = ($_GET['ipp'] == 'All') ? $this->items_total:($this->current_page * $this->items_per_page)-1;
$this->limit = ($_GET['ipp'] == 'All') ? "":" LIMIT $this->low,$this->items_per_page";
}
function display_pages()
{
return $this->return;
}
}
?>
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$host = "127.0.0.1";
$user = "root";
$passwd = "1234";
$dbname = "activity";
$tbname = " activity";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query ("SET NAMES utf8") or die (mysql_errno());
$strSQL = "SELECT * FROM activity ";
$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;
}
$strSQL .=" order by id_activity ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
echo "<table width='50%' border='1' bordercolor='' bgcolor='' ><tr align='center'>
<tr align='center'>
<td><b>วัน/เดือน/ปี</b></td>
<td><b>หัวข้อกิจกรรม</b></td>
<td><b>รายละเอียดกิจกรรม</b></td>
<td><b>รูปภาพกิจกรรม</b></td>
</tr>";
while($objResult = mysql_fetch_array($objQuery))
{
$date_activity = DateThai($row["date_activity"]);
$head_activity= $row["head_activity"];
$detail_activity = $row["detail_activity"];
$pic_activity= $row["pic_activity"];
echo "<tr align='center'>";
echo "<td>$date_activity</td>";
echo "<td>$head_activity</td>";
echo "<td>$detail_activity</td>";
echo "<td><img width=150 height=150 src='$pic_activity'></td>";
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record
<?
$pages = new Paginator;
$pages->items_total = $Num_Rows;
$pages->mid_range = 10;
$pages->current_page = $Page;
$pages->default_ipp = $Per_Page;
$pages->url_next = $_SERVER["PHP_SELF"]."?QueryString=value&Page=";
$pages->paginate();
echo $pages->display_pages()
?>
<?
mysql_close();
?>
</body>
</html>
|
|
|
|
|
Date :
2012-01-14 17:01:31 |
By :
yokojung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีใครแก้ให้เลยอ่าค่ะ หรือว่า งด แก้โค้ดให้แล้ว
|
|
|
|
|
Date :
2012-01-20 14:04:42 |
By :
yokojung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมว่าไปศึกษาเพิ่มเติมว่าแต่ละบรรทัดมันทำงานอย่างไร แล้วคุณก็จะสามารถแก้ทุกอย่างได้ด้วยตัวเอง
ที่คุณตาลายเพราะคุณแก้แบบมั่วๆ โดยไม่รู้การทำงานของมัน ซึ่งบางอย่างมันไม่ยากหากคุณต้องการศึกษามันจริงๆ
ไม่งั้นคุณทำระบบมีร้อยไฟล์ แค่เพิ่มมาบรรทัดหนึ่งคุณก็ต้องให้คนอื่นพิมพ์ให้ ผมคิดว่าคุณยังใช้ความพยายามน้อยไป
และพี่เพื่อนๆในเว็บนี้ใจดีทุกคนพร้อมจะให้ความช่วยเหลือคุณ
|
|
|
|
|
Date :
2012-01-20 14:15:23 |
By :
narubet |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เคยแนะนำไปแล้ว แบบนี้แหละครับ
|
|
|
|
|
Date :
2012-01-20 15:15:08 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวแบ่งหน้ามีหลายเจ้า คุณลองหาดูในกระทู้รวมของผมนะ แบบ class คุณคงงง หาแบบอื่นมาลองดูก่อน
|
|
|
|
|
Date :
2012-01-20 15:20:11 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้นะ https://www.thaicreate.com/community/php-mysql-pagination.html
บรรทัด 141 ใส่ชื่อตารางาของคุณที่ต้องการเข้าไป
บรรทัด 171 (CustomerID) ใส่ชื่อฟิลด์ที่ต้องการเรียงเข้าไป ชื่อฟิลด์ของคุณนะ
ตั้งแต่บรรทัด 188 (<?=$objResult["CustomerID"];?>) แก้เป็นชื่อฟิดล์ของคุณ
หมดและ วิธีเอาไปใช้งาน
|
ประวัติการแก้ไข 2012-01-20 15:33:29 2012-01-20 15:34:02
|
|
|
|
Date :
2012-01-20 15:32:23 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|