I need to get the current time, in Hour:Min format can any one help me in this.
Try this:
$hourMin = date('H:i');
This will be 24-hour time with an hour that is always two digits. For all options, see the PHP docs for date().