I have an issue where my credit card processor is in a time zone that is two hours ahead of my host. This causes me an issue when the day rolls over, it causes some problems for orders being placed. The current code I have in my page to insert the date into my order form is
<?php $today = date("Ymd"); print("\n"); ?>I do not know a lot about coding, so I was wanting to just add two hours to the time, and output it like the code above. Any help would be greatly appreciated.