I know that when i retrieve data from facebook events it comes in PST time, but when i do a query like this
$imploded_eids = implode( ',', $eids );
$fql[$id] = "
SELECT
eid,
name,
description,
start_time,
end_time,
venue,
location,
update_time
FROM
event
WHERE
eid IN ($imploded_eids) AND start_time > $start_time";
do i need to convert actual gmt() time to PST time?Or should i use the timezone of the currently logged on user?