gpt4 book ai didi

php - 在我的数据库和 html 上转换相同的日期

转载 作者:行者123 更新时间:2023-11-29 22:19:33 26 4
gpt4 key购买 nike

美好的一天!我是 php 新手,有件事想请教。我有一个数据库字段名称 date_reserved ,日期格式为 ex。 2015 年 6 月 12 日。我的问题是我无法将 html 代码转换为与数据库内的格式相同的格式。当我试图回应他们时,结果是 2015-01-06。

这是我的 html 代码。

<?php 
if(isset($_GET['cancel_button']))
{

$REuntil = date_create(strip_tags($_GET['until']));
$REfrom = date_create(strip_tags($_GET['from']));
$until = date_format($REuntil, "F-d-Y");
$from = date_format($REfrom,"F-d-Y");
?>
<table class="table table-striped">
<tr>
<td><strong>Cottage Name</strong></td>
<td><strong>Customer Name</strong></td>
<td><strong>Date Reserved</strong></td>
<td><strong>Reservation Type</strong></td>
<td><strong>Total Payment</strong></td>
</tr>
<?php
$kweri = $dbcon->query("SELECT * FROM booking
INNER JOIN cottages on cottages.cot_id = booking.cottage_id
LEFT JOIN members on members.cust_id = booking.customer_id
WHERE (date_reserved BETWEEN '$from' and '$until') and book_status = 'Canceled'")
or die(mysqli_error());
while($row = $kweri->fetch_assoc())
{

?>
<tr>
<td><?php echo $row['cot_type']?></td>
<td><?php echo $row['walkin_fname']?><?php echo $row['walkin_lname']?><?php echo $row['cust_fname']?><?php echo $row['cust_lname']?></td>
<td><?php echo $row['date_reserved']?></td>
<td>
<div class="label label-primary"><?php if($row['customer_id'] == '0'): echo 'Walkin'; endif;?></div>
<div class="label label-success"><?php if($row['customer_id'] > '0'): echo 'Online'; endif;?></div>
</td>

</tr>
<?php
}
echo'</table>';
}
?>

最佳答案

改变

<td><?php echo $row['date_reserved']?></td>

<td><?php echo date('F-d-Y' ,strtotime($row['date_reserved']))?></td>

关于php - 在我的数据库和 html 上转换相同的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30885577/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com