HEX
Server: Apache
System: Linux iad1-shared-b8-22 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: dh_7uh9vd (6523960)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/dh_7uh9vd/lifeofcanada.com/ehc/mvr/js/dtime.js
function dtime_nums(d, like_eu) {
    var now = new Date;
    now.setDate(now.getDate() + d);
    var dayNum = "";
    if (now.getDate() < 10) {
        dayNum = "0"
    }
    dayNum += now.getDate();
    var monthNum = "";
    if (now.getMonth() + 1 < 10) {
        monthNum = "0"
    }
    monthNum += now.getMonth() + 1;
    if (like_eu === true) {
        document.write(dayNum + "." + monthNum + "." + now.getFullYear())
    } else {
        document.write(monthNum + "." + dayNum + "." + now.getFullYear())
    }
}