我只是想在我的表格提交[重复]时在php中的24小时制中显示时间

This question already has an answer here:

I am using below line of code

$time = $_SERVER['REQUEST_TIME'];

but in my database it shows like following format. (unixtimestamp)

1419957753

How i can change it?

</div>

I would use date() instead, which is something I've just done on my website:

<?php echo date("D M d, Y G:i a"); ?>

it's explained in a little more detail here, as regards formatting. Maybe you want:

<?php echo date("G:i"); ?>

the formatting is up to you, but date() is what you want ;-)