When I use the getdate(); function to convert unix timestamp into datetime format all I getis the word array.
What is the best way to convert unix timestamp into datetime format.
This is my code.
$offsetHigh = getdate($offsetHighUnixTime);
$offsetLow = getdate($offsetLowUnixTime);
echo $offsetHigh . "offset high <br>";
echo $offsetLow . "offset low <br>";
Greg