ช่วยทีครับ เปิดหน้าสองไม่ได้ครับ แบ่งหน้าแล้วแต่เปิดหน้าสองไม่ได้ แต่ถ้าไม่ได้ใส่ where ที่คิวรี่ ก็ไปได้ครับแต่ใส่คิวรี่วันที่แล้วไม่ไปเลยครับ
Code (PHP)
<HTML>
<HEAD>
<TITLE>JavaScript Toolbox - Calendar Popup To Select Date</TITLE>
<SCRIPT LANGUAGE="JavaScript" src="CalendarPopup.js"></SCRIPT>
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<SCRIPT LANGUAGE="JavaScript">
var cal = new CalendarPopup();
</SCRIPT>
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<SCRIPT LANGUAGE="JavaScript">
var cal1 = new CalendarPopup();
</SCRIPT>
<link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css">
</HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<BODY>
<FORM NAME="datestart1" method="post" action="how.php" >
<INPUT TYPE="text" NAME="date1" VALUE="" SIZE=25>
<A HREF="#"
onClick="cal.select(document.forms['datestart1'].date1,'anchor1','yyyy-MM-dd'); return false;"
NAME="anchor1" ID="anchor1">select</A><span id="sprytextfield1">
<input type="text" name="timestart2" id="hiddenField" value="00:00:00">
<span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">รูปแบบ 00:00:00.</span></span><span id="sprytextfield2">
<input type="text" name="timestop2" id="hiddenField2" value="23:59:59" >
<span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">รูปแบบ 00:00:00</span><span class="textfieldInvalidFormatMsg">t.</span></span>
<input type="text" name="date2" value="" size=25>
<a href="#"
onClick="cal1.select(document.forms['datestart1'].date2,'anchor2','yyyy-MM-dd'); return false;"
name="anchor2" id="anchor2">select</a>
<input type="submit" name="button" id="button" value="Submit">
</FORM>
<?
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;
}
}
?>
<style type="text/css">
<!--
.paginate {
font-family: Arial, Helvetica, sans-serif;
font-size: .7em;
}
a.paginate {
border: 1px solid #000080;
padding: 2px 6px 2px 6px;
text-decoration: none;
color: #000080;
}
h2 {
font-size: 12pt;
color: #003366;
}
h2 {
line-height: 1.2em;
letter-spacing:-1px;
margin: 0;
padding: 0;
text-align: left;
}
a.paginate:hover {
background-color: #000080;
color: #FFF;
text-decoration: underline;
}
a.current {
border: 1px solid #000080;
font: bold .7em Arial,Helvetica,sans-serif;
padding: 2px 6px 2px 6px;
cursor: default;
background:#000080;
color: #FFF;
text-decoration: none;
}
span.inactive {
border: 1px solid #999;
font-family: Arial, Helvetica, sans-serif;
font-size: .7em;
padding: 2px 6px 2px 6px;
color: #999;
cursor: default;
}
-->
</style>
<?
$timestart22= ($date1." ".$timestart2);
$timestop22= ($date2." ".$timestop2);
?>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("360rate");
$strSQL = "SELECT * FROM tblsendsms where sendsms_date between '$timestart22' and '$timestop22' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 30; // 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 sendsms_date ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="1130" border="1">
<tr>
<th width="608" align="left"> <div align="center">CustomerID </div></th>
<th width="100"> <div align="center">Name </div></th>
<th width="31"> <div align="center">Email </div></th>
<th width="284"> <div align="center">CountryCode </div></th>
<th width="38"> <div align="center">Budget </div></th>
<th width="29"> <div align="center">Used </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td align="left"><div align="left"><?=$objResult["sendsms_sms"];?></div></td>
<td><?=$objResult["sendsms_phone"];?></td>
<td><?=$objResult["sendsms_call"];?></td>
<td><div align="left"><?=$objResult["sendsms_date"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<p><br>
ทั้งหมด <?= $Num_Rows;?> รายการ
<?
$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($objConnect);
?>
</p>
<p>
</p>
<script type="text/javascript">
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "time", {format:"HH:mm:ss"});
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "time", {format:"HH:mm:ss"});
</script>
</body>
</html>
Tag : PHP
Date :
2011-05-18 16:13:26
By :
mab_tor
View :
858
Reply :
5
น่าจะเกิดจากค่า
$timestart22
$timestop22
มันไม่ส่งค่ามั้งคะ
อันนี้ไม่ค่อยแน่ใจนะ
Date :
2011-05-19 12:34:40
By :
naked13
Code (PHP)
$pages->url_next = $_SERVER["PHP_SELF"]."?QueryString=value&Page=";
คุณจะต้องส่งค่า timestart , timestop ไปด้วยน่ะครับ
Date :
2011-05-19 13:00:29
By :
webmaster
ส่งไงคับพี่วิน ...
Date :
2011-05-21 10:00:33
By :
mab_tor
Code (PHP)
$pages->url_next = $_SERVER["PHP_SELF"]."?QueryString=value&Page=×tart22=$timestart22×top22=$timestop22";
แก้ไขตรงนี้ด้วยครับ
Code (PHP)
$timestart22= ($date1." ".$timestart2);
$timestop22= ($date2." ".$timestop2);
if($timestart22=="")
{
$timestart22 = $_GET["timestart22"];
}
if($timestop22=="")
{
$timestop22 = $_GET["timestop22"];
}
Date :
2011-05-21 10:09:22
By :
webmaster
ขอบคุณมากครับ
Date :
2011-05-22 10:28:44
By :
mab_tor
Load balance : Server 05