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

simple php question

Options
  • 18-07-2007 10:19am
    #1
    Registered Users 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