Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

simple php question

  • 18-07-2007 9:19am
    #1
    Registered Users, Registered Users 2 Posts: 648 ✭✭✭


    hi
    i have created a function which will allow me to display different timezone times.

    my only problem is that when i pass in $hourchange as -1 or +5 or whatever it will not work

    anyone know where the issue is

    function getTimeZoneTime($hourchange=''){
    $serveroffset=6;
    $currenttime=mktime((date("h")+$serveroffset).$hourchange, date("i"),date("s"), date("m")  , date("d"), date("Y"));
    echo date("F j, Y, g:i a",$currenttime);
    }
    


    tnx


Comments

  • Closed Accounts Posts: 18,163 ✭✭✭✭Liam Byrne


    The dot operator (".") is for strings, not numbers

    date("h")+$serveroffset).$hourchange


Advertisement