สอบถามปัญหา script php เกี่ยวกับการแบ่งหน้า tab1 แสดงผลถูกต้อง ถ้าเลือก tab2 เป็นต้นไป ไม่แสดงผล ต้องแก้ไขอย่างไร
กระผมมือใหม่ฝึกเขียน php และได้เขียน script php แสดงข้อมูลจากฐานข้อมูล Mysql โดยใช้ script php 2 ไฟล์ คือ ไฟล์ที่ 1 ใช้แสดงข้อมูลทั้งหมดจากฐานข้อมูลและเลือกสถานบริการ ส่งค่าไปที่ script php ไฟล์ที่2 ไฟล์ที่ 1 แสดงผลได้ถูกต้อง สำหรับไฟล์ที่2 แสดงได้เฉพาะ tab1 สำหรับ tabอื่นไม่แสดงผล รบกวนผู้รู้ให้คำแนะนำ และแก้ไขscript อย่างไรครับ
................................................>>
ไฟล์ที่ 1 Report-form-R506.php
<?php
// session_start();
// include("header.admin.inc.php");
// session_start();
// if($_SESSION['Status'] == "ADMIN"){
// include("header.admin.inc.php");
// }else{
// include("header.user.inc.php");
// }
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;
}
.style14 {
font-family: "ms Sans Serif";
font-weight: bold;
}
.style15 {color: #0000FF; font-family: "ms Sans Serif"; }
.style16 {font-family: "MS Sans Serif"}
.style17 {font-family: "ms Sans Serif"}
-->
</style>
<p>
<div align="center"><span class="style14">ตารางแสดงการส่งข้อมูลรายงาน 506 <br />
ศูนย์ระบาดวิทยาอำเภอถลาง</span><span class="style16"><br />
........................................................</span><br/>
<p>
<?
include("connect.php");
//$objConnect = mysql_connect("localhost","tecphuke_db","pk1234") or die("Error Connect to Database");
//$objConnect = mysql_connect("localhost","root","mysql") or die("Error Connect to Database");
//$objDB = mysql_select_db("tecphuke_db");
//$objDB = mysql_select_db("tecpk");
//mysql_query("SET NAMES TIS620");
//$strSQL = "SELECT * FROM nuke_rload_wfile order by id desc";
$strSQL = "SELECT * FROM nuke_rload_wfile WHERE typereport='1'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
//$Per_Page = 14; // Per Page
$Per_Page = 5; // 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 desc LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
</div>
<form id="frm" name="frm" method="post" action="Report-view-R506.php">
<div align="center"><span class="style17">สถานบริการ
<select name="hserv" id="hserv">
<option value="">เลือกสถานบริการ</option>
<?PHP
include("connect.php");
$sql = "select * from nuke_rloads_hserv";
$query = mysql_query($sql) or die("error=$sql");
$num = mysql_num_rows($query);
for($i=1;$i<=$num;$i++)
{
$row = mysql_fetch_array($query);
?>
<option value="<?PHP echo $row['rcode']?>"> <?PHP echo $row['hname']?></option>
<?PHP
}
?>
</select>
<input name="Search" type="submit" value="แสดงรายงาน" />
</span>
</div>
</form>
<p>
<table width="1054" align="center" class="square">
<tr bgcolor="#CCCCCC">
<td width="62" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ลำดับที่</span></td>
<td width="78" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">หน่วยงาน</span></td>
<td width="256" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ชื่อไฟล์</span></td>
<td width="79" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ขนาดไฟล์</span></td>
<td width="167" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ผู้ส่ง</span></td>
<td width="52" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">งวดที่</span>'</td>
<td width="83" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">วันที่</span></td>
<td width="97" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">วันที่ส่งข้อมูล</span></td>
<td width="103" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">วันที่รับข้อมูล</span></td>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td bgcolor="#99FFCC"><div align="center" class="style15 style17">
<?=$objResult["id"];?>
</div></td>
<td bgcolor="#99FFCC"><div align="center" class="style15 style17">
<?=$objResult["rcode"];?>
</div>
<div align="center" class="style15 style17"></div></td>
<td bgcolor="#99FFCC"><div align="left" class="style15 style17">
<?=$objResult["name"];?>
</div></td>
<td bgcolor="#99FFCC"><div align="center" class="style15 style17">
<?=$objResult["size"];?>
</div>
<div align="center" class="style15 style17"></div></td>
<td bgcolor="#99FFCC"><div align="left" class="style15 style17">
<?=$objResult["sname"];?>
</div></td>
<td bgcolor="#99FFCC"><div align="center"><span class="style15 style17">
<?=$objResult["506wk"];?>
</span></div></td>
<td bgcolor="#99FFCC"><div align="center"><span class="style15 style17">
<?php
$ewk506=$objResult["506wk"];
include("connect.php");
$sql1 = "select * from nuke_rload_506wk where 506wk='$ewk506'";
$query1 = mysql_query($sql1) or die("error=$sql1");
$data1 = mysql_fetch_array($query1);
$edate = date('d-m-Y',strtotime($data1['506date']));
echo $edate;
?>
</span></div></td>
<!--การระบุ index แบบ Enumerated array-->
<td bgcolor="#99FFCC"><div align="center" class="style15 style17">
<?=date('d-m-Y',strtotime($objResult["sdate"]));?>
</div></td>
<!--การระบุ index แบบ Associative array-->
<td bgcolor="#99FFCC"><div align="center" class="style15 style17">
<?=date('d-m-Y',strtotime($objResult["dreceive"]));?>
</div></td>
</tr>
<?PHP
}
// 6. ปิดการเชื่อมต่อ
//mysql_close();
?>
</table>
<br />
<center>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;
?>
</center>
<br/>
<?php
include("footer.inc.php");
?>
............................................................................................................................................................>>
ไฟล์ที่2 Report-View-R506.php
<?php
// session_start();
//if($_SESSION['Status'] == "ADMIN"){
// include("header.admin.inc.php");
// }else{
// include("header.user.inc.php");
// }
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;
}
.style14 {
font-family: "ms Sans Serif";
font-weight: bold;
}
.style15 {color: #0000FF; font-family: "ms Sans Serif"; }
.style16 {font-family: "MS Sans Serif"}
.style17 {font-family: "ms Sans Serif"}
.style18 {color: #0000FF}
-->
</style>
<p>
<div align="center"><span class="style14"><span class="style18">ตารางแสดงการส่งข้อมูลรายงาน 506 </span><br />
<?
$hserv = $_POST['hserv'];
// $hserv = '030202';
include("connect.php");
$sql3 = "select * from nuke_rloads_hserv where rcode='$hserv'";
$query3 = mysql_query($sql3) or die("error=$sql3");
$data3 = mysql_fetch_array($query3);
$nhname = $data3['hname'];
echo 'รพ.สต/ศสช. ' ,$nhname;
?><br />
<span class="style18">ศูนย์ระบาดวิทยาอำเภอถลาง</span></span><span class="style16"><br />
.....................................</span><br/>
<?
include("connect.php");
// $sql_show = "select * from nuke_rload_wfile";
//if($_POST['Search'])
//{
//$hserv = $_POST['hserv'];
$strSQL = "SELECT * FROM nuke_rload_wfile WHERE typereport='1' AND rcode='$hserv'";
$objQuery1 = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery1);
//$Per_Page = 14; // Per Page
$Per_Page = 5; // 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 desc LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
</div>
<table width="1041" align="center" class="square">
<tr bgcolor="#CCCCCC">
<td width="62" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ลำดับที่</span></td>
<td width="78" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">หน่วยงาน</span></td>
<td width="263" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ชื่อไฟล์</span></td>
<td width="79" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ขนาดไฟล์</span></td>
<td width="168" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">ผู้ส่ง</span></td>
<td width="53" align="center" bgcolor="#0000FF"><div align="center"><span class="style17" style="color: #FFFFFF; font-weight: bold;">งวดที่</span>'</div></td>
<td width="93" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">วันที่</span></td>
<td width="101" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">วันที่ส่งข้อมูล</span></td>
<td width="104" align="center" bgcolor="#0000FF"><span class="style17" style="color: #FFFFFF; font-weight: bold;">วันที่รับข้อมูล</span></td>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td bgcolor="#99FFCC"><div align="center" class="style15">
<?=$objResult["id"];?>
</div></td>
<td bgcolor="#99FFCC"><div align="center" class="style15">
<?=$objResult["rcode"];?>
</div>
<div align="center" class="style15"></div></td>
<td bgcolor="#99FFCC"><div align="left" class="style15">
<?=$objResult["name"];?>
</div></td>
<td bgcolor="#99FFCC"><div align="center" class="style15">
<?=$objResult["size"];?>
</div>
<div align="center" class="style15"></div></td>
<td bgcolor="#99FFCC"><div align="left" class="style15">
<?=$objResult["sname"];?>
</div></td>
<td bgcolor="#99FFCC"><div align="center"><span class="style15 style17">
<?=$objResult["506wk"];?>
</span></div></td>
<td bgcolor="#99FFCC"><div align="center"><span class="style15 style17">
<?php
$ewk506=$objResult["506wk"];
include("connect.php");
$sql1 = "select * from nuke_rload_506wk where 506wk='$ewk506'";
$query1 = mysql_query($sql1) or die("error=$sql1");
$data1 = mysql_fetch_array($query1);
$edate = date('d-m-Y',strtotime($data1['506date']));
echo $edate;
?>
</span></div></td>
<!--การระบุ index แบบ Enumerated array-->
<td bgcolor="#99FFCC"><div align="center" class="style15"><span class="style15 style17">
<?=date('d-m-Y',strtotime($objResult["sdate"]));?>
</span></div></td>
<!--การระบุ index แบบ Associative array-->
<td bgcolor="#99FFCC"><div align="center" class="style15"><span class="style15 style17">
<?=date('d-m-Y',strtotime($objResult["dreceive"]));?>
</span></div></td>
</tr>
<?PHP
}
// 6. ปิดการเชื่อมต่อ
//mysql_close();
?>
</table>
<br />
<center>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;
?>
<br/>
<br />
<a href="Report-form-R506.php">กลับเมนูรายงาน
</a>
</center>
<br/>
<?php
include("footer.inc.php");
?>
run script ไฟล์ 2
Error
Tag : PHP, MySQL
ประวัติการแก้ไข 2013-03-10 10:14:35 2013-03-10 10:16:13 2013-03-10 10:21:10
Date :
2013-03-10 07:49:10
By :
somboon
View :
1028
Reply :
9
ในลิ้งแต่ละหน้าให้ส่งตัวแปรที่คุณใช้ฟิวเตอร์ข้อมูลไปด้วยครับ
Date :
2013-03-10 09:04:17
By :
mangkunzo
จาก script php ไฟล์ที่ 2 รับค่าจากฟอร์มในไฟล์ที่ 1 ดัวแปรนี้ครับ** $hserv = $_POST['hserv'];**
แล้วจะส่งตัวแปรนี้ในแต่ละหน้าอย่างไร
แก้บรรทัดนี้หรือเปล่า $pages->url_next = $_SERVER["PHP_SELF"]."?QueryString=value&Page=";
แก้อย่างไรมองไมเห็นภาพครับ
ประวัติการแก้ไข 2013-03-10 10:18:12
Date :
2013-03-10 10:10:35
By :
somboon
เอาเป็นว่าเช็คค่าที่ส่งมาเพื่อทำการ Query ฐานข้อมูลดูครับว่าส่งมาถูกต้อง และครบตามที่เราคาดหวังหรือเปล่า ดูจากโค้ดน่าจะส่งมาแบบ $_GET นะครับ ลอง bug โปรแกรมดูครับ
Code (PHP)
<?PHP
echo "<pre>";
print_r($_GET);
echo "</pre>";
?>
Date :
2013-03-10 10:26:26
By :
arm8957
ลอง bug ดู ตามscript แนะนำ print_r($_GET);ไม่มีค่าอะไร แต่ถ้าใช้ print_r($_POST); ค่าที่ได้ตามต้องการ
หากกำหนดแบบค่าตัวแปรเป็นค่าคงที่ เช่น $hserv ='030202'; การแสดงการแบ่งถูกต้องทุกประการ เลยสงสัยว่าหากรับค่าจากฟอร์มในไฟล์ 1 จะรับเป็น GET หรือ POST ตัวไหนถูกต้อง scriptนี้ใช้ POST ครับ ดังนี้
$hserv = $_POST['hserv'];
Date :
2013-03-10 10:39:02
By :
somboon
ก็ส่งค่าไปแบบนี้ครับ
Code (PHP)
$hserv = $_REQUEST['hserv'];
$pages->url_next = $_SERVER["PHP_SELF"]."?QueryString=value&hserv=".$hserv."&Page=";
เวลารับค่าก็เปลี่ยนจาก รับค่าแบบ $_POST เป็น $_REQUEST (จะรับได้ทั้ง $_GET และ $_POST ) ครับ ลองดูครับ
Date :
2013-03-10 10:42:21
By :
arm8957
ok .ใช้ได้ตามต้องการแล้ว เป็นงัยช่วยอธิบายคำสั่งนี้หน่อยครับ และคงจะต้องขอคำแนะนำในการพัฒนาต่อไป ขอบคุณมากครับ
Date :
2013-03-10 10:46:35
By :
somboon
ขอบคุณครับ
Date :
2013-03-10 10:51:46
By :
somboon
ได้ครับ
คือโดยปกติแล้วการรับค่าจากตัวแปรที่ส่งมาจากฟอร์ม หรือส่งผ่าน URL จะมีการรับแบบ $_GET และ $_POST
แต่กรณีของคุณหน้าแรกส่งค่ามาจากฟอร์ม แบบ $_POST แต่พอหน้าถัดไปส่งค่าไปแบบ $_GET โดยที่ค่าและตัวแปรเป็นตัวเดียวกัน เพียงแค่ส่งค่าไปคนละแบบ เพื่อไม่ให้ซับซ้อนก็เลยใช้การรับค่าแบบ $_REQUEST (จะรับได้ทั้ง $_GET และ $_POST )
อันที่จริงคุณจะรับค่าตัวแปรแบบ $_GET และ $_POST ปกติก็ได้ เพียงแค่ หน้าแรกคุณกำหนดให้รับค่าแบบ $_POST ส่วนหน้าถัดๆไป ก็รับค่าแบบ $_GET
ส่วนบรรทัดนี้
$pages->url_next = $_SERVER["PHP_SELF"]."?QueryString=value&hserv=".$hserv."&Page=";
ผมก็ใส่ตัวแปรและค่าตัวแปรไปอีกตัวนึง --> hserv=".$hserv." <-- เพื่อให้หน้าอื่นทำงานได้ด้วย
ประมาณนี้(ตามที่พอจะเข้าใจครับ )
Date :
2013-03-10 10:57:49
By :
arm8957
Load balance : Server 04