|
|
|
ขอความช่วยเหลือการส่งค่า ใน JavaScript ด้วยครับ ส่งค่าเพื่อตรวจสอบอีกหน้าหนึ่งครับ |
|
|
|
|
|
|
|
พี่ครับมีปัญหาเรื่องการส่งลิงค์หรือส่งค่าไอดีครับ คือ ตอนผมรันบนเครื่องก็ใช้ได้ปรกติแต่พออัพขึ้นเซฟเวอร์ดันไม่ได้ครับ
1.ส่วนของโค๊ดหน้าที่คลิกส่งค่า ID
Code (JavaScript)
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''}
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:'_blank'}
//var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
anylinkmenu1.items=[
["Original Thai style", "album.php?id=1/"],
["Thai Contemporary", "album.php?id=2/"],
["Wedding Dresses", "album.php?id=3"],
["","#" ],
["","#" ] //no comma following last entry!
]
2.ส่วนรับค่า ID มาตรวจสอบ
Code (PHP)
<?php
$allowed_types=array('jpg','jpeg','gif','png');
$id==2;
if($id==1)
{
$dir = 'images/gallery/thai_style/';
}elseif($id==2)
{ $dir = 'images/gallery/thai_contemporary/'; }
else
{ $dir = 'images/gallery/wedding_dresses/';}
/*
$allowed_types=array('jpg','jpeg','gif','png');
$dir ="images/gallery/thai_style/";
*/
$files1 = scandir($dir);
$total=0; // นับจำนวนรูปทั้งหมด
$pic_path=array();
foreach($files1 as $key=>$value){
if($key>1){
$file_parts = explode('.',$value);
$ext = strtolower(array_pop($file_parts));
if(in_array($ext,$allowed_types)){
$pic_path[]=$dir.$value;
$total++;
}
}
}
// จำนวนรายการที่ต้องการแสดง แต่ละหน้า
$perPage = 24;
// คำนวณจำนวนหน้าทั้งหมด
$num_naviPage=ceil($total/$perPage);
// กำหนดจุดเริ่มต้น และสิ้นสุดของรายการแต่ละหน้าที่จะแสดง
if(!isset($_GET['page'])){
$s_key=0;
$e_key=$perPage;
$_GET['page']=1;
}else{
$s_key=($_GET['page']*$perPage)-$perPage;
$e_key=$perPage*$_GET['page'];
$e_key=($e_key>$total)?$total:$e_key;
}
/*
for($i=1;$i<=$num_naviPage;$i++){
echo " || <a href="?page=".$i."">Page $i</a>";
}
*/
echo "<hr>";
// แสดงรายการ
for($indexPicture=$s_key;$indexPicture<$e_key;$indexPicture++){
echo '
<div class="pic '.$nomargin.'" style="background:url('.$pic_path[$indexPicture].') no-repeat 50% 50%;"> ';
echo '
<a href="'.$pic_path[$indexPicture].'" title="'.$title.'" target="_blank">'.$title.'</a>
</div>';
}
echo"<hr>";
for($i=1;$i<=$num_naviPage;$i++){
$myclass="";
if(!isset($_GET['page']) && $i==1){
$myclass="class="current_page"";
}
if(isset($_GET['page']) && $_GET['page']==$i){
$myclass="class="current_page"";
}
echo " || <a $myclass href="?page=".$i."">Page $i</a>";
}
?>
*** คือตอนคลิกส่งค่า บนแอดเดรสบาร์ ถูกต้องน่ะครับ เช่น ส่งค่า ID=1 แต่ พอนำมาเช็คค่าเพื่อตรวจสอบสคริปให้แสดงข้อมูล ดันผิดพลาดครับ **
Code (PHP)
if($id==1)
{ $dir = 'images/gallery/thai_style/'; }
elseif($id==2)
{ $dir = 'images/gallery/thai_contemporary/'; }
else{ $dir = 'images/gallery/wedding/'; }
ตัวอย่างที่ผมอัพขี้น www.oonraksamui.com/wedding
Tag : PHP, MySQL, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2011-04-10 22:34:09 |
By :
เอ็ด |
View :
770 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบเรยท่านเทพทั้งหลาย ขอความช่วยเหลือด้วยครับ
|
|
|
|
|
Date :
2011-04-11 13:21:41 |
By :
เอ็ด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|