I need to output the current hour plus 1 (e.g. if the hour was 1pm it would output 2pm).
I current have
which outputs the current time, how would i increment it by an hour?
I current have
PHP Code:
<?php echo date("H:i:s"); ?>
Comment