Have you tried to change
Hello $_SESSION["name"]
to single apostrophe's ??
Like this:
Hello $_SESSION['name']
Or you could choose to try to break up the code a bit to get a more "specific" error-message(what is your error message by the way?)
echo "<body><html>";
echo "Hello ".$SESSION['name']." from Yahoo chat clubs";
echo "</body></html>";