Is it possible to create a PHP function that says:
if (timezone == 'Toronto') { echo 'You Live in Toronto'; }
I see I can set the default timezone using:
date_default_timezone_set('America/Toronto'); // RESET DATE
Basically I want to display some text if the user is from Toronto, and otherwise not.
Thanks so much for anyones input.