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 > ช่วยด้วยค่ะอยากถามเรื่องการเรียกข้อมูลมาจากฐานข้อมูล แล้วแสดงคอลัมน์เป็นแนวตั้งค่ะ



 

ช่วยด้วยค่ะอยากถามเรื่องการเรียกข้อมูลมาจากฐานข้อมูล แล้วแสดงคอลัมน์เป็นแนวตั้งค่ะ

 



Topic : 119137



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



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




ตาราง

รูปคอลัมน์เป็นแบบแนวนอน แต่ที่ต้องการอยากให้เป็นแนวตั้งเช่น

ถ้านึกภาพไม่ออกยกตัวอย่างให้ค่ะ

แนวตั้ง อยากให้เป็นแบบแนวตั้งค่ะ
รายการ คือ Case computer
รหัสทะเบียน คือ พิเชษ กุศลส่ง
ชื่อหน่วยงาน คือ เครื่องจำค่าวันที่ไม่ได้
สังกัด คือ ตั้งค่าวันที่ใหม่
หมายเลข คือ S/N 123


แนวนอน
รายการ รหัสทะเบียน ชื่อหน่วยงาน สังกัด หมายเลข
Case computer พิเชษ กุศลส่ง เครื่องจำค่าวันที่ไม่ได้ ตั้งค่าวันที่ใหม่ S/N 123









Code (PHP)
<?php
session_start();
		
		if($_SESSION['Id_Room'] == "")
	{
		exit();
	}
include 'connect.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."\">&laquo; Previous</a> ":"<span class=\"inactive\" href=\"#\">&laquo; 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 &raquo;</a>\n":"<span class=\"inactive\" href=\"#\">&raquo; 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;
	}
}	
	
session_write_close();  
 ?>  

<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>มหาวิทยาลัยอีสเทิร์นเอเชีย</title>

<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet">

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->

</head><br>
<body><br>
<br>
<br>
<p>&nbsp;</p>
<center>
  <p>
   <button type="button" class="btn btn-default"  type="button" ><strong>รายการลงทะเบียนอุปกรณ์รหัส   <?php echo $_SESSION['Place']; ?><?php echo $_SESSION['RoomNumber']; ?></strong></button>
</p>
</center>
<br>
<center>
 <button type="button" class="btn btn-default" onClick="window.location='addjob.php'" class="button-submit"><strong>เครื่องที่ตรวจเช็ค</strong></button></center>
<br>
 <?php  
   $strSQL="select * from job Where Id_Room ='".$_SESSION['Id_Room']."' ";  
     $objQuery=mysql_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){
		echo "<caption><b>ไม่พบราย</b></caption>";
	
		$Num_Pages =($Num_Rows/$Per_Page) ;
	}
	else
	{
		$Num_Pages =($Num_Rows/$Per_Page)+1;
		$Num_Pages = (int)$Num_Pages;
	}


	$strSQL .="ORDER BY job_id DESC LIMIT $Page_Start , $Per_Page";
	$objQuery  = mysql_query($strSQL);

	 ?>
<div class="container-fluid" style=" max-width:1800px; ">
  <div class="row">
<div class="col-lg-12 col-lg-offset-0">
	<table class="table table-hover table-condensed table-striped table-bordered">
        <thead>
            <tr>
           
                <th width="15%"><center><font color="#191919">รายการ</font></center></th>
                <th width="15%"><center><font color="#191919">รหัสทะเบียน</font></center></th>
              <th width="15%"><center><font color="#191919">ชื่่อหน่วยงาน</font></center></th>
 				 <th width="20%"><center><font color="#191919">สังกัด</font></center></th>
               <th width="10%"><center><font color="#191919">หมายเลข S/N</font></center></th> 
               <th width="10%"><center><font color="#191919">วันที่</font></center></th>
			   <th width="15%"><center><font color="#191919">ยี่ห้อ</font></center></th>
                <th width="15%"><center><font color="#191919">รุ่น</font></center></th>
               <th width="20%"><center><font color="#191919">Mac Lan</font></center></th>
                <th width="20%"><center><font color="#191919">WIFI MAC</font></center></th>
                  <th width="20%"><center><font color="#191919">CPU</font></center></th>
                    <th width="20%"><center><font color="#191919">RAM</font></center></th>
                      <th width="20%"><center><font color="#191919">HDD</font></center></th>
                        <th width="20%"><center><font color="#191919">OS</font></center></th>
                
			    <th width="20%"><center><font color="#191919">แก้ไข</font></center></th>
               <th width="20%"><center><font color="#191919">ลบ</font></center></th>
            </tr>
        </thead>
		
 <?php while($objResult = mysql_fetch_array($objQuery))
{

?>
 <tbody>
            <tr>
                <td><?php echo $objResult["job_name"];?></td>
                <td><?php echo $objResult["name"];?></td>
             <td><?php echo $objResult["job_problem"];?></td>
               <td><?php echo $objResult["job_cause"];?></td>
                <td><?php echo $objResult["note"];?></td>    
<td><?php echo $objResult["job_date"];?></td>  
<td><?php echo $objResult["job_remark"];?></td>  
<td><?php echo $objResult["comrun"];?></td>  
<td><?php echo $objResult["mac"];?></td>  
<td><?php echo $objResult["wifi"];?></td>  
<td><?php echo $objResult["cpu"];?></td>  
<td><?php echo $objResult["ram"];?></td>  
<td><?php echo $objResult["hdd"];?></td>  
<td><?php echo $objResult["os"];?></td>  
<td><a href="editjob.php?job_id=<?php echo $objResult['job_id']; ?>">แก้ไข</a></td>  
<td><a href="JavaScript:if(confirm('คุณต้องการลบข้อมูลนี้')==true){window.location='deletejob.php?job_id=<?php echo $objResult['job_id']; ?>';}">ลบ</a></td>  				
            </tr>
            </tr>
        </tbody>		
	<?php
// close while loop 
}
?>
 </table>
</div>
</div>
<br>
<div align="center">จำนวน <?php echo $Num_Rows;?> ข้อมูล 

<?php

$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()
?></font></div>		
		
<br>
<br>
<br>
<center>
 <button type="button" class="btn btn-default" onClick="window.location='indexAdmin.php'"><strong>กลับ</strong></button>		</center>
<br>
<br>
<br>	

</body>

</html>
โค้ดของคอลัมน์ที่เป็นแนวนอน

Code
[/code]Code
[code]






Tag : PHP, HTML/CSS, JavaScript, Ajax, jQuery, CakePHP









ประวัติการแก้ไข
2015-09-29 00:14:16
2015-09-29 00:17:10
2015-09-29 00:19:16
2015-09-29 00:33:28
2015-09-29 00:35:27
2015-09-29 00:36:55
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2015-09-29 00:12:09 By : a_u_m22 View : 1898 Reply : 4
 

 

No. 1



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



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

Code (PHP)
<?php
$array=array(
	array('c1'=>'r1c1', 'c2'=>'r1c2', 'c3'=>'r1c3'),
	array('c1'=>'r2c1', 'c2'=>'r2c2', 'c3'=>'r2c3'),
);
$line = array();
foreach($array as $ro){
	foreach($ro as $key=>$vl){
		if(!isset($line[$key])) $line[$key]="<tr><th>$key</th>";
		$line[$key].="<td>$vl</td>";
	}
}
echo "<table border=1>";
foreach($line as $key=>$vl) echo $line[$key],"</tr>";
echo "</table>";









ประวัติการแก้ไข
2015-09-29 02:17:38
2015-09-29 02:19:11
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-09-29 02:16:52 By : NewbiePHP
 


 

No. 2



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



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


ทำไม่ได้ค่า อยากได้ที่ดึงข้อมูลมากจากฐานข้อมูล และตารางออกมาแนวตั้งค่ะ

12
รูปตารางที่มีคอลัมน์ในแนวนอน


45
อยากได้ให้ดึงออกมาจากฐานข้อมูล เป็นแนวตั้งค่ะ

ช่วยหน่อยนะคะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-09-29 14:26:10 By : a_u_m22
 

 

No. 3

Guest


วนสลับ กันนะครับ วน echo tr ก่อนนะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-09-29 17:21:36 By : NEWHKTM
 


 

No. 4



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



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

ปรับโค๊ดตัวอย่างนิดหน่อยครับ ทำให้ $array มาจากการคิวรี่
Code (PHP)
<?php
$db=new mysqli( 'localhost', 'test', 'test', 'test');
$sql = 'select * from table';
$array=$db->query($sql) or die ( $sql . "<br>" . $db->error);
$line = array();
while($ro = $array->fetch_assoc() ){
	foreach($ro as $key=>$vl){
		if(!isset($line[$key])) $line[$key]="<tr><th>$key</th>";
		$line[$key].="<td>$vl</td>";
	}
}
echo "<table border=1>";
foreach($line as $key=>$vl) echo $line[$key],"</tr>";
echo "</table>";



ประวัติการแก้ไข
2015-09-29 19:16:17
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-09-29 19:15:31 By : NewbiePHP
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยด้วยค่ะอยากถามเรื่องการเรียกข้อมูลมาจากฐานข้อมูล แล้วแสดงคอลัมน์เป็นแนวตั้งค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 01
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 อัตราราคา คลิกที่นี่