Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > แสดงภาพตามรหัสสินค้าเมื่อ 1 สินค้ามีมากกว่า 1 รูป ช่วยแนะนำหน่อยครับ



 

แสดงภาพตามรหัสสินค้าเมื่อ 1 สินค้ามีมากกว่า 1 รูป ช่วยแนะนำหน่อยครับ

 



Topic : 086097



โพสกระทู้ ( 32 )
บทความ ( 0 )



สถานะออฟไลน์




Code (C#)
<?php
	/*** By Weerachai Nukitram ***/
	/***  http://www.ThaiCreate.Com ***/
?>
<html>
<head>
<title>ThaiCreate.Com Ajax Tutorial</title>
<script language="JavaScript">
	   var HttPRequest = false;

	   function doCallAjax(product_id,order_num) {
		  HttPRequest = false;
		  if (window.XMLHttpRequest) { // Mozilla, Safari,...
			 HttPRequest = new XMLHttpRequest();
			 if (HttPRequest.overrideMimeType) {
				HttPRequest.overrideMimeType('text/html');
			 }
		  } else if (window.ActiveXObject) { // IE
			 try {
				HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
			 } catch (e) {
				try {
				   HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {}
			 }
		  } 
		  
		  if (!HttPRequest) {
			 alert('Cannot create XMLHTTP instance');
			 return false;
		  }
	
		  var url = 'AjaxPHPShoppingCart2.php';
		  var pmeters = "tProductID=" + product_id+
						"&tQty=" + order_num;
			HttPRequest.open('POST',url,true);

			HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
			HttPRequest.setRequestHeader("Content-length", pmeters.length);
			HttPRequest.setRequestHeader("Connection", "close");
			HttPRequest.send(pmeters);
			
			
			HttPRequest.onreadystatechange = function()
			{

				 if(HttPRequest.readyState == 3)  // Loading Request
				  {
				   document.getElementById("mySpan").innerHTML = "Now is Loading...";
				  }

				 if(HttPRequest.readyState == 4) // Return Request
				  {			  
					  document.getElementById('mySpan').innerHTML = HttPRequest.responseText;
				  }				
			}

	   }
	   
	   function CheckOut()
	   {
	   window.location = 'AjaxPHPShoppingCart3.php';
	   }
	</script>
<style type="text/css">
<!--
@import url("css/style.css");
.style1 {
	color: #532900;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
-->
</style>
<script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
		<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
		<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
		
		<style type="text/css" media="screen">
			
			body {
				font: 62.5%/1.2 Arial, Verdana, Sans-Serif;
			}
			
		</style>

</head>
<body onLoad="JavaScript:doCallAjax('','')">
<div>
  <h1 class="style1"><img src="images/shopping_cart_next.png" width="48" height="48"><br>
  เลือกสินค้าใส่ตะกร้า</h1>
  <table width="201" border="0" cellpadding="0" cellspacing="0" bordercolor="#996600">
    <tr>
      <td width="201" valign="top"><?
	$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
	$objDB = mysql_select_db("pochainb_metic");
	$strSQL = "SELECT * FROM product ORDER BY product_id ASC ";
	mysql_query("SET NAMES TIS620"); 
	mysql_query("SET character_set_results=tis620"); 
	$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
	echo"<table border=\"0\"  cellspacing=\"1\" cellpadding=\"1\"><tr>";	
	$intRows = 0;
	while($objResult = mysql_fetch_array($objQuery))
	{
	$intRows++;
	echo "<td>";									
	?>
        <? is_login(); ?> 
		  <div id="main">
			<ul class="gallery clearfix">
					<a href="images/<?=$objResult["Picture"];?>" rel="prettyPhoto[gallery2]" title="How is the description on that one? How is the description on that one? How is the description on that one? "><img src="images/<?=$objResult["Picture"];?>" width="130" height="130" alt="This is a pretty long title" /></a>
			</ul>
			<div align="left">
			  <script type="text/javascript" charset="utf-8">
				$(document).ready(function(){
					$("area[rel^='prettyPhoto']").prettyPhoto();
					$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: true});
					$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:10000, hideflash: true});
			
				});
			</script>
			  
            </div>
	    </div>
		  
          <center>
            <?=$objResult["product_name"];?>
            <br>
            <?=$objResult["product_Case"]." Baht";?>
            <br>
            <input name="text" type="text" id="txt<?=$intRows;?>" style="width:20px" value="">
            <input name="button" type="button" onClick="JavaScript:doCallAjax('<?=$objResult["product_id"];?>',document.getElementById('txt<?=$intRows;?>').value);" value="เพิ่ม">
          </center>
        <?
		echo"</td>";
		if(($intRows)%4==0)
		{
		echo"</tr>";
		}
		else
		{
		echo "<td>";
		}	
	}
	echo"</tr></table>";
	?>
          <?
	mysql_close($objConnect);
	?>
      <span id="mySpan"></span></td>
    </tr>
  </table>
  <p>&nbsp;</p>
</div>
</body>
</html>




ตามภาพนะครับ ผมใส่ code ลงในเว็บไม่เป็น งง มากครับ
ภาพประกอบ2
ภาพสินค้า




ตรงในส่วนนี้อ่ะครับดูให้ผมหน่อยไม่มีใครตอบให้ผมเลย คือว่าเมื่อคลิกที่ภาพแล้วภาพที่แสดงจะต้องเป็นรหัสภาพเดียว
ไม่ใช่เอามาทั้งหมดอะครับผมจะต้องเขียน Code อย่างไร
Code (C#)
<ul class="gallery clearfix">
					<a href="images/<?=$objResult["Picture"];?>" rel="prettyPhoto[gallery2]" title="How is the description on that one? How is the description on that one? How is the description on that one? "><img src="images/<?=$objResult["Picture"];?>" width="130" height="130" alt="This is a pretty long title" /></a>
			</ul>

คือว่าผมหัดทำเว็บและได้ทดลองทำการแสดงรูปภาพแบบ Jquery ผมติดปัญหาอยู่อย่างคือ
1 รหัสสินค้า จะสามารถมีรูปได้หลายรุปเช่น
รหัสสินค้าที่ 1 จะมีรูปภาพ 001.jpg , 002.jpg , 003.jpg

เมื่อผมแสดงสินค้าออกมาโดยใช้ while($objResult = mysql_fetch_array($objQuery))
โดยแสดงออกตามนี้ครับ
<a href="images/<?=$objResult["Picture"];?>" rel="prettyPhoto[gallery2]" title="How is the description on that one? How is the description on that one? How is the description on that one? "><img src="images/<?=$objResult["Picture"];?>" width="130" height="130" alt="This is a pretty long title" /></a>


ปรากฏว่าก็ใช้งานได้ออกมาได้ถูกต้องแต่เมื่อผมคลิกที่รูปแล้ว ภาพที่แสดงออกมามันออกมาทั้งหมดในฐานข้อมูลเลยครับ
ซึ่งผมต้องการให้แสดงเฉพาะรูปของรหัสสินค้านั้นๆ ช่วยแนะนำหน่อยครับ
ปล.อาจจะพูดไม่ตรงประเด็นเพราะผมมือใหม่ขอโทษและขอขอบคุณล่วงหน้าด้วยนะครับ



Tag : PHP, CakePHP









ประวัติการแก้ไข
2012-10-31 21:47:05
2012-10-31 21:48:45
2012-10-31 21:51:32
2012-10-31 22:03:06
2012-10-31 22:08:27
2012-10-31 22:10:17
2012-10-31 22:18:10
2012-10-31 22:19:01
2012-11-01 00:19:43
2012-11-01 00:22:12
2012-11-01 00:23:21
2012-11-01 00:26:59
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-10-31 21:44:18 By : prachaporn View : 1070 Reply : 3
 

 

No. 1



โพสกระทู้ ( 32 )
บทความ ( 0 )



สถานะออฟไลน์


Code เต็มๆ นะครับ
Code (C#)
<?php
	/*** By Weerachai Nukitram ***/
	/***  http://www.ThaiCreate.Com ***/
?>
<html>
<head>
<title>ThaiCreate.Com Ajax Tutorial</title>
<script language="JavaScript">
	   var HttPRequest = false;

	   function doCallAjax(product_id,order_num) {
		  HttPRequest = false;
		  if (window.XMLHttpRequest) { // Mozilla, Safari,...
			 HttPRequest = new XMLHttpRequest();
			 if (HttPRequest.overrideMimeType) {
				HttPRequest.overrideMimeType('text/html');
			 }
		  } else if (window.ActiveXObject) { // IE
			 try {
				HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
			 } catch (e) {
				try {
				   HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {}
			 }
		  } 
		  
		  if (!HttPRequest) {
			 alert('Cannot create XMLHTTP instance');
			 return false;
		  }
	
		  var url = 'AjaxPHPShoppingCart2.php';
		  var pmeters = "tProductID=" + product_id+
						"&tQty=" + order_num;
			HttPRequest.open('POST',url,true);

			HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
			HttPRequest.setRequestHeader("Content-length", pmeters.length);
			HttPRequest.setRequestHeader("Connection", "close");
			HttPRequest.send(pmeters);
			
			
			HttPRequest.onreadystatechange = function()
			{

				 if(HttPRequest.readyState == 3)  // Loading Request
				  {
				   document.getElementById("mySpan").innerHTML = "Now is Loading...";
				  }

				 if(HttPRequest.readyState == 4) // Return Request
				  {			  
					  document.getElementById('mySpan').innerHTML = HttPRequest.responseText;
				  }				
			}

	   }
	   
	   function CheckOut()
	   {
	   window.location = 'AjaxPHPShoppingCart3.php';
	   }
	</script>
<style type="text/css">
<!--
@import url("css/style.css");
.style1 {
	color: #532900;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
-->
</style>
<script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
		<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
		<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
		
		<style type="text/css" media="screen">
			
			body {
				font: 62.5%/1.2 Arial, Verdana, Sans-Serif;
			}
			
		</style>

</head>
<body onLoad="JavaScript:doCallAjax('','')">
<div>
  <h1 class="style1"><img src="images/shopping_cart_next.png" width="48" height="48"><br>
  เลือกสินค้าใส่ตะกร้า</h1>
  <table width="201" border="0" cellpadding="0" cellspacing="0" bordercolor="#996600">
    <tr>
      <td width="201" valign="top"><?
	$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
	$objDB = mysql_select_db("pochainb_metic");
	$strSQL = "SELECT * FROM product ORDER BY product_id ASC ";
	mysql_query("SET NAMES TIS620"); 
	mysql_query("SET character_set_results=tis620"); 
	$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
	echo"<table border=\"0\"  cellspacing=\"1\" cellpadding=\"1\"><tr>";	
	$intRows = 0;
	while($objResult = mysql_fetch_array($objQuery))
	{
	$intRows++;
	echo "<td>";									
	?>
        <? is_login(); ?> 
		  <div id="main">
			<ul class="gallery clearfix">
					<a href="images/<?=$objResult["Picture"];?>" rel="prettyPhoto[gallery2]" title="How is the description on that one? How is the description on that one? How is the description on that one? "><img src="images/<?=$objResult["Picture"];?>" width="130" height="130" alt="This is a pretty long title" /></a>
			</ul>
			<div align="left">
			  <script type="text/javascript" charset="utf-8">
				$(document).ready(function(){
					$("area[rel^='prettyPhoto']").prettyPhoto();
					$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: true});
					$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:10000, hideflash: true});
			
				});
			</script>
			  
            </div>
	    </div>
		  
          <center>
            <?=$objResult["product_name"];?>
            <br>
            <?=$objResult["product_Case"]." Baht";?>
            <br>
            <input name="text" type="text" id="txt<?=$intRows;?>" style="width:20px" value="">
            <input name="button" type="button" onClick="JavaScript:doCallAjax('<?=$objResult["product_id"];?>',document.getElementById('txt<?=$intRows;?>').value);" value="เพิ่ม">
          </center>
        <?
		echo"</td>";
		if(($intRows)%4==0)
		{
		echo"</tr>";
		}
		else
		{
		echo "<td>";
		}	
	}
	echo"</tr></table>";
	?>
          <?
	mysql_close($objConnect);
	?>
      <span id="mySpan"></span></td>
    </tr>
  </table>
  <p>&nbsp;</p>
</div>
</body>
</html>









ประวัติการแก้ไข
2012-10-31 22:19:43
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-10-31 22:15:05 By : prachaporn
 


 

No. 2



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ดูตัวอย่างนี้ครับ

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
	<script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
	<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" charset="utf-8" />
	<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>

	<style type="text/css" media="screen">
		
		body {
			font: 62.5%/1.2 Arial, Verdana, Sans-Serif;
			padding: 0 20px;
		}
		
	</style>

			<script type="text/javascript" charset="utf-8">
				$(document).ready(function(){
					$("area[rel^='prettyPhoto']").prettyPhoto();
					
					$("a[rel^='prettyPhoto']").prettyPhoto({ animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: true });
					$("a[rel^='prettyPhoto']").prettyPhoto({ animation_speed:'fast',slideshow:3000, hideflash: true });
			
				});
			</script>

</head>
<body>
<?
		$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
		$objDB = mysql_select_db("mydatabase");

		$strSQL = "SELECT * FROM album WHERE AlbumID = '".$_GET["AlbumID"]."' ";
		$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
		$objResult = mysql_fetch_array($objQuery);
?>
<h1><?=$objResult["AlbumName"];?></h1>
<?

		$strSQL2 = "SELECT * FROM gallery WHERE AlbumID = '".$_GET["AlbumID"]."' ORDER BY GalleryID ASC ";
		$objQuery2 = mysql_query($strSQL2) or die ("Error Query [".$strSQL2."]");

		echo"<table border=\"1\"  cellspacing=\"1\" cellpadding=\"1\"><tr>";
		$intRows = 0;
		while($objResult2 = mysql_fetch_array($objQuery2))
		{
			echo "<td>"; 
			$intRows++;
	?>
			<center>
				<a href="myfile/<?=$objResult2["GalleryShot"];?>" rel="prettyPhoto[gallery]"  title="<?=$objResult2["GalleryName"];?>"><img src="myfile/<?=$objResult2["GalleryShot"];?>" width="100" height="100"></a><br>
				<?=$objResult2["GalleryName"];?>
				<br>
			</center>
	<?
			echo"</td>";
			if(($intRows)%4==0)
			{
				echo"</tr>";
			}
		}
		echo"</tr></table>";

		mysql_close($objConnect);
	?>
</body>
</html>




Go to : prettyPhoto jQuery lightbox SlideShow สร้าง lightbox ทำ Gallery ด้วย prettyPhoto
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-11-01 12:02:11 By : mr.win
 

 

No. 3



โพสกระทู้ ( 32 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
$strSQL = "SELECT * FROM album WHERE AlbumID = '".$_GET["AlbumID"]."' ";
		$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
		$objResult = mysql_fetch_array($objQuery);


ขอสอบถามพี่ mr.win หน่อยครับ คือผมทำตามแล้วเลยเกิดสงสัยว่า (ผมไม่เก่งครับกำลังหัดทำ) ผมจะส่งค่า $GET["AlbumID"]
ได้อย่างไรในไฟล์เดียวกันอะครับ ตามที่ผมคิดคือเมื่อคลิกรูปสินค้าแล้ว จะต้องส่งค่า AlbumID ไปให้ Jquery รับค่าแล้วแสดงผลเฉพาะ AlbumID อย่างไรครับ ขอบคุณพี่ วิน ล่วงหน้าเลยครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-11-01 13:44:40 By : prachaporn
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : แสดงภาพตามรหัสสินค้าเมื่อ 1 สินค้ามีมากกว่า 1 รูป ช่วยแนะนำหน่อยครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่