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,027

HOME > PHP > PHP Forum > ขอคำแนะนำครับ ถ้าจะเปลี่ยนการแสดง เป็น วัน เดือน ปี ต้องทำอย่างไรครับ



 

ขอคำแนะนำครับ ถ้าจะเปลี่ยนการแสดง เป็น วัน เดือน ปี ต้องทำอย่างไรครับ

 



Topic : 123896



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



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




ขอคำแนะนำครับ ถ้าจะเปลี่ยนการแสดง เป็น วัน เดือน ปี (ตามรูป)ต้องทำอย่างไรครับ
ขอบคุณครับ

ลองทำอย่างนี้ ...

<? $date_star=date(d-F-y) echo $date_start ?>

ผลแสดงออกมาเป็นวันปัจุบัน ช่วยแนะนำด้วยครับ

date

Code php
Code (PHP)
<!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" xml:lang="en-gb" lang="en-gb" >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />


<?php

include 'header_admin2.php';
?>
<style type="text/css">
#gridview thead tr th {
	color: #000;
}
</style>
<head>
<title>Untitled Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="jQueryui/jQuery.js"></script>
<script type="text/javascript" src="jQueryui/jQuery-ui.js"></script>
<script type="text/javascript">
   // กำหนดสี billing Status
    var search = 'Reservation';
    $(document).ready(function () {
    $("div:contains('"+search+"')").each(function () {
      var regex = new RegExp(search,'gi');
      $(this).html($(this).text().replace(regex, "<span class='red'>"+search+"</span>"));
	});
   });
</script>


<script type="text/javascript">
function show()
{

$('.total').toggle();


}
</script>
<style type="text/css">
@media print{
#no_print{display:none;}
}
</style>





<style type="text/css">
table#gridview {
clear:both;
}
table#gridview td {
padding:3px 0px;
}
table#gridview tr.head {
background:#B18904;
font-family:Arial, Helvetica, sans-serif; 
text-align:center;
}
table#gridview tr.head td {
padding:3px 0px;
}
.bb2 {
font-size: 14px;
}
text-indent:0.5in;
#gridviewsss {
color: #FFF;
}
body {
background-color: #D3D3D3;
}
body,td,th {
color: #909090;
}
thead > tr{background:#;}
th, td{font-family:font-family:Arial, Helvetica, sans-serif}
thead th{color:#fff;font-size:14px;}
tr{height:44px;}

tbody > tr:nth-child(even) {background: #f3f3f3}
tbody > tr:nth-child(odd) {background: #fff}
tr.tr2 {background:#FFB7B7 !important}

tr.tr3 {background:#ABEBC6 !important}

tbody > tr:hover, tr.tr2:hover, tr.tr3:hover{background:#fff5e6 !important}

tbody td{font-size:13px;color:#000}
tbody td > div{text-align:center}
.text-center{text-align:center}
.hide{display: none;visibility: hidden;}
.tr-last td{border:'';background:none;}

div.total{width:90px;margin-top:-57px;position:absolute;text-align:right;}

</style>

<style type="text/css">
@charset "utf-8";
 .red{
    color: red;   
}

p.ex {
    color:green;
    background: none;
}

mark.red {
    color:green;
    background: none;
}

mark.blue {
    color:gray;
    background: none;
}
p.ex { color:green; background: none}
div.Canceled > p.ex { color:#333333 !important;}

</style>
<body>
<?php
include('config.php');
?>
<form  action="highlight999.php" method="post" name="adminForm" id="adminForm">
  <table class="display" width="893" height="38" border="0" align="center" cellpadding="1" cellspacing="1" id="headtop">
  <thead> <tr>
  <td width="248" height="36">Date :
    <input type="text" id= "datepicker"  name="date_start" value="<?php echo $_POST['date_start'];?>"
               size="10"  style="width:150px;" onchange="document.adminForm.submit();" /></td>
  <td width="638">Until:   <span class="ff2">
    <input type="text" id= "datepicker2"  name="date_stop" value="<?php echo $_POST['date_stop'];?>"
               size="10"  style="width:150px;" onchange="document.adminForm.submit();" />
  </span></td>
</tr>
</thead></table>
</form>
<br/>

<table class="display" width="1097" height="170" border="0" align="center" cellpadding="1" cellspacing="1" id="gridview">
<thead> <tr bgcolor="#D2B4DE">
<th width="115" height="69">Date</th>
<th width="94">Fleet</th>
<th width="115">Guest Name</th>
<th width="131">Destination</th>

<th width="76">Package</th>

<th class="total" width="73">Cash</th>
<th width="63">Credit</th>
<th width="106">Total Amount</th>
<th width="80">Remark</th>
<th width="128">schedule</th>
<th width="45">Status</th>
<th width="34">&nbsp;</th>
</tr>
</thead>
<?php
$sql_show = "SELECT customer.*,IF(charged='Cash',amount,'') AS price1,IF(charged='Package',amount,'') AS price2,IF(charged='Credit',amount,'') AS price3 
  FROM customer INNER JOIN charge_by_table ON customer.charged =charge_by_table.charge_by ";
	if($_POST['date_start']) {  
		$date_start = $_POST['date_start'];
		$date_stop = $_POST['date_stop']; 
		$sql_show .=" WHERE (reservation_date between '".$_POST['date_start']."' AND '".$_POST['date_stop']."') ORDER BY reservation_date, fleet ASC";
    }
	$result_show = mysql_query($sql_show) or die(mysql_error());
	$chk_date = false;  
	$chk_sum = 0;
	$total = 0;
	while($rs = mysql_fetch_array($result_show)) {
		$id = $rs["id"];
		$level = $rs['level'];
		$level2 = $rs["level2"];
		$reservation_date = $rs["reservation_date"]; 
		$price1 = $rs["price1"];
		$price2 = $rs["price2"];
		$price3 = $rs["price3"];
		$remark = $rs["remark"];
		$date = '';
		$chk_total = '';
		
		if ($chk_date <> $reservation_date) {
			$date = $reservation_date;
			
			if ($chk_date <> false) {
				
		$chk_total = '<div class="total">'.number_format($chk_sum).'</div>';
	}
	$chk_sum = 0;
}
			
			
			
			
		$edit_class = (trim($remark) == '') ? '' : ' hide';
		$tr_class = '';
		if ($level == '2') {
			$tr_class = ' class="tr2"';
		}
		else if ($level2 == '3') {
			$tr_class = ' class="tr3"';
		}
		echo '<tr align="center"'.$tr_class.'>';
		?>
        
        
        
<?php echo '<td height="42">'.$date.'</td>';?>



<td height="50"><?php echo $rs["fleet"];?></td>
<td><?php echo $rs["destination"];?></td>
<td><?php echo $rs["guest_name"];?></td>
<td bgcolor="#DCFEEB"><?php echo number_format($price2);?></td>
<td class="total" bgcolor="#D2F7FC"><?php echo number_format($price1);?></td>
<td bgcolor="#D1E2F5"><?php echo number_format($price3);?></td>
<td align="center" bgcolor="#FED37D"><?php echo $chk_total;?></td>
<td align="center" ><?php echo $remark;?></td>
<td>
<?php
if($rs["schedule1"] == "" or $rs["schedule2"] == ""){ // ถ้า schedule1 หรือ schedule2 ไม่มีค่า
    echo $rs["schedule1"].$rs["schedule2"];
}else{
    echo $rs["schedule1"]."<hr>".$rs["schedule2"];
}
?>
</td>
<td ><strong><div class="<?php echo $rs["status"];?>"><p class="ex"><?php echo $rs["status"];?></p></div></strong></td>
<td ><div class="text-center<?php echo $edit_class;?>"> <a href="edit.php?edit_id=<?php echo $id;?>">EDIT</a> </div></td>
<td bgcolor="#999999">&nbsp;</td>


<?php
echo '</tr>';
$chk_sum +=   $price1 + $price2 + $price3;
$total +=   $price1 + $price2 + $price3;
$chk_date = $reservation_date;

}
?>
<tr class="tr-last">
<td height="47"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><div class="total"><?php echo number_format($chk_sum);?></div></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>

</table>
</body>
</html>

<script type="text/javascript">
$(function(){
	 $("#datepicker").datepicker({ dateFormat: "yy-mm-dd" }).val('<?php echo $_POST['date_start'];?>');
	 $("#datepicker2").datepicker({ dateFormat: "yy-mm-dd" }).val('<?php echo $_POST['date_stop'];?>');
});
</script>
<link href="jQueryui/jQuery-ui.css" rel="stylesheet" type="text/css"/>




Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2016-07-17 19:37:32 By : panya@ots View : 820 Reply : 4
 

 

No. 1



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

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

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

PHP Date
<?php echo date("d F Y"); ?>







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2016-07-17 23:27:42 By : Krungsri
 


 

No. 2



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



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


ตอบความคิดเห็นที่ : 1 เขียนโดย : Krungsri เมื่อวันที่ 2016-07-17 23:27:42
รายละเอียดของการตอบ ::
ขอบคุณครับ
แต่ <?php echo date("d F Y"); ?> มาแค่วันปัจจุบันใช่ไหมครับ ที่ต้องการเปลี่ยนวันทั้งหมดที่แสดงในรายการ (วนลูปด้วยครับ)
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2016-07-18 04:19:21 By : panya@ots
 

 

No. 3



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



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


ลองไปปรับใช้ดูน่ะครับ
date_format(date_create($rs["date"]),"d-m-Y");
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2016-07-18 17:12:20 By : kikeeza01
 


 

No. 4



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



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


ตอบความคิดเห็นที่ : 3 เขียนโดย : kikeeza01 เมื่อวันที่ 2016-07-18 17:12:20
รายละเอียดของการตอบ ::

....ขอบคุณมากๆครับคุณ KeeTheAfroz


code นี้กระชับดีมาก ปรับใช้ได้ง่ายหลายรูปแบบ

ขอบคุณจริงๆครับผม

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2016-07-18 23:58:59 By : panya@ots
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
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 00
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 อัตราราคา คลิกที่นี่