I am using the Date function
Code: Select all
<?php echo date('l dS \of F Y h:i:s A');?>is there any way to do that like
Code: Select all
<?php echo date('l dS \of F Y h+2:i:s A');?>Moderator: General Moderators
Code: Select all
<?php echo date('l dS \of F Y h:i:s A');?>Code: Select all
<?php echo date('l dS \of F Y h+2:i:s A');?>Code: Select all
echo date('l dS \of F Y h:i:s A', strtotime("+2 hours"));