|
|
|
สวัสดีคะ พอว่าติดตรงจะทำหน้าถัดไป พอคลิกหน้า 2 ข้อมูลไม่มาคะ |
|
|
|
|
|
|
|
ลองเช็ค Array $_REQUEST ครับว่าได้รับค่าอะไรมาบ้าง
เอาฟังก์ชั่นนี้ไปเช็คครับ
Code (PHP)
function arrayList($arrayData) {
if (count($arrayData) > 0) {
print "
<div style='padding-left:30px;padding-top:10px;padding-bottom:10px;border-top:1px #000 solid;border-bottom:1px #000 solid;'>";
foreach ($arrayData as $key => $val ) {
print "
<div style='padding-left:30px;'>
<b>$key : </b>";
if (is_array($val)) {
print "<font color='#CC0000'>$val</font>";
arrayList($arrayData[$key]);
} else {
print "<font color='#009900'>$val</font>";
}
print "
</div>";
}
print "
</div>";
} else {
print "<font color='#009900'>Input Incorrect.</font>";
}
}
วิธีใช้ :
Code (PHP)
arrayList($_REQUSET);
เสร็จแล้วลองแคปจอมาให้ดูด้วยครับ
|
|
|
|
|
Date :
2014-07-02 11:25:03 |
By :
soghband |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ฟังก์ชั่นผิดครับห้ก๊อบวิธีใช้ไปแปะหลัง session_start(); เลยครับไม่ต้องแก้อะไรครับ
Code (PHP)
arrayList($_REQUEST);
ปล.ขอโทษที ผมเขียนชื่อตัวแปร $_REQUEST ผิด
|
|
|
|
|
Date :
2014-07-02 12:19:52 |
By :
soghband |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บันทัด 2 หลัง session_start();
print_r($_REQUEST);
ข้อความจะแสดงที่ด้านบน ของหน้า ถ้าอ่านไม่ออก อ่านแล้วงง ให้ view source มาดู
|
|
|
|
|
Date :
2014-07-02 12:39:30 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนขอโค๊ดของไฟล์แรกด้วยครับ อยากเช็ค วิธีการ ส่งตัวแปรมมาที่ ไฟล์สอง ครับ
มัน ไม่ได้แสดงค่าอะไรออกมา ก็แสดงว่าไม่มีการส่ง ตัวแปร มาครับ
|
|
|
|
|
Date :
2014-07-02 14:49:36 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อธิบายโครงสร้างหน่อยได้มั้ยอะครับ งง ๆ ชอบกล ผมสังเกตว่ามีการรับค่า $_GET['start'] ด้วยแต่ไม่มีการส่งค่า start ไปด้วย
|
|
|
|
|
Date :
2014-07-02 14:50:39 |
By :
soghband |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ไฟล์แรกคะ ส่วนไฟล์ที่สอง ตามที่ตั้งกระทู้คะ
Code (PHP)
<?php session_start();
include("connect/config.php");
if(!isset($_GET['start'])){
$start = 0;
}else{
$start = $_GET['start'];
}
$sql=" select * from wedding where 1 order by wedding_id desc ";
$rs1=mysql_query($sql,$conn);
$tatal=mysql_num_rows($rs1);
$limit=1;
$page = pageNUM(mysql_num_rows($rs1),$limit);
//$page = ceil($tatal_sum/$limit); // เอา record ทั้งหมด หารด้วย จำนวนที่จะแสดงของแต่ละหน้า
$sql="select * from wedding where 1 order by wedding_id desc limit $start,$limit ";
$rs=mysql_query($sql,$conn);
?>
<!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" dir="ltr" lang="en-US"><head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ระบบสนับสนุนการตัดสินใจสำหรับการเลือกร้านจัดงานแต่งงาน</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="website RSS Feed" href="http://localhost/wordpress/?feed=rss2" />
<link rel="pingback" href="http://localhost/wordpress/xmlrpc.php" />
<script type="text/javascript" src="js/jquery-1.3.2.js" ></script>
<script type="text/javascript" src="js/jquery-ui-1.7.1.custom.js" ></script>
<script type="text/javascript" src="js/ui.core.js" ></script>
<script type="text/javascript" src="js/effects.core.js" ></script>
<script type="text/javascript" src="js/javascript.js" ></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/wordpress/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/wordpress/wp-includes/wlwmanifest.xml" />
<link rel='index' title='website' href='http://localhost/wordpress' />
<meta name="generator" content="WordPress 3.0.4" />
</head>
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
var winW = 550;
var winH = 550;
var winX = (screen.availWidth - winW) / 2;
var winY = (screen.availHeight - winH) / 2;
var features = 'left=' + winX + ',top=' + winY + ',height=' + winH + ',' + 'width=' + winW + ',status=yes,' + 'toolbar=no, menubar=no,location=no';
window.open(href, windowname,features);
return false;
}
//-->
</SCRIPT>
<body>
<div id="page">
<? include('header.php')?>
<div id="sidebar">
<? include('left_menu.php')?>
</div>
<div id="content" class="narrowcolumn">
<div class="post" id="post-1">
<h2><a href="#" >ร้านเช่าชุดแต่งงาน </a></h2>
<p class="postmeta" >
<div style="width:600px;">
<?php $count= $start+1;
while($arr=mysql_fetch_array($rs)){?>
<? if($arr['filename']!=""){?>
<div class="gallery" style="float:left;width:110px; padding-bottom:20px; display:block;">
<a href="wedding_select.php?id=<?=$arr['wedding_id']?>"><img src="filesphoto_wedding/<?=$arr['filename']?>" width="100" height="100"></a>
<br /><br /><center><?=$arr['wedding_name']?></center></div>
<? }?>
<? }?>
</div>
<div class="clear"></div><br />
<?php echo $page?>
</div>
<div class="navigation">
<div class="alignleft"></div>
<div class="alignright"></div>
</div>
</div>
<hr />
<div class="clear"></div>
<div id="footer">
<? include('footer.php')?>
</div>
</div>
<!-- Gorgeous design by Mujtaba Ahmed - http://www.dynamicguru.com -->
</body>
</html>
|
|
|
|
|
Date :
2014-07-02 15:31:04 |
By :
NToo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้คือไม่มีอะไรเข้ามาเลยอะครับ ^^"
ลองพิมพ์ URL หน้าที่ข้อมูลไม่ขึ้นให้ดูหน่อยได้มั้ย
|
ประวัติการแก้ไข 2014-07-02 15:48:04
|
|
|
|
Date :
2014-07-02 15:45:46 |
By :
soghband |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง arrayList($_GET); ดูหน่อยครับอยากรู้มีอะไรออกมาบ้าง
|
|
|
|
|
Date :
2014-07-02 16:36:53 |
By :
soghband |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ ส่วนหัว file wedding_select.php
<?php session_start();
print_r($_REQUEST); exit;
แค่นี้ครับ แล้ว เปิด ไฟล์ 1 คลิก เรียก ไฟล์ 2 เลยครับ มันต้องมีอะไรออกมา
แบบ array( id=xx ) แบบนี้ ครับ หรือ array( id = )
|
|
|
|
|
Date :
2014-07-02 19:40:17 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|