try this
<?php
session_start();
unset($HTTP_SESSION_VARS['gtag']);
@session_destroy();
echo("gtag:$gtag<br>"); //this gtag will still be printed unless you refresh the page.
?>
i guess it was due to this, the session_start() & echo() statement will be executed before the session_destroy().
is there a way around guys?
suneel