我正在尝试使用AM / PM在我的HTML输入类型时间中显示时间,但似乎我的代码没有显示在输入类型中。
这是HTML输入时间的输出。
9:00 AM
但我的HTML输入类型时间仍然是
--:-- --
这是我的代码。
<?php
//set up mysql connection
mysql_connect("localhost", "root", "") or die(mysql_error());
//select database
mysql_select_db("db") or die(mysql_error());
//select all records form tblmember table
$query = 'SELECT * FROM newsfeed';
//execute the query using mysql_query
$result = mysql_query($query);
//then using while loop, it will display all the records inside the table
while ($row = mysql_fetch_array($result)) { ?>
<div class="modal fade" id="myModal<?php echo $row['id'] ?>" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Admin</h4>
</div>
<div class="modal-body">
<form id="updateform" action="admin_update.php" method="post">
<fieldset>
<!-- image-preview-filename input [CUT FROM HERE]-->
<div class="form-group">
<img src="<?php echo $row['image'] ?>" class="img-responsive" />
</div>
<div class="form-group">
<label>When</label>
<br/>
<input type="time" class="form-control" value="<?php $date = date("h:i A", strtotime($row['time_d'])); echo "$date"; ?>" id="until_t" name="until_t" />
<br/>
</div>
<div class="modal-footer">
<input type="submit" id="btnsave" name="btnsave" class="btn btn-default" value="Save" />
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<?php } ?>
答案 0 :(得分:5)
value
的{{1}}需要采用24小时格式,而不是<input type="time" />
。见http://www.w3.org/TR/html-markup/input.time.html
请尝试不使用AM/PM
中的A
和date()
代替H
h
答案 1 :(得分:0)
你用双引号写了变量。 所以,而不是代码中的这个陈述。
echo "$date";
将其替换为
echo $date;
答案 2 :(得分:0)
有两种方法可以实现 Mysql 方式和 php 方式。
Mysql:
SELECT DATE_FORMAT(time_column_name, '%H:%i') FROM table_name // this will return the time the same format as the input of type time sends
Php:
$formated_time = date("H:i", strtotime($row['time_column_name'])); // this will convert the time to 24 hours also the same the input of type time sends