foreach($_SESSION as $key => $value)
{
echo "<!-- ###Session $key = $value -->\n";
}
If you just want this for debugging purposes, a simpler way that also would deal with multi-dimension $_SESSION arrays:
<?php
echo "<!-- SESSION DATA:
" . print_r($_SESSION, 1) . "
-->";