Read the error, and learn what is wrong:
Parse error:
syntax error.
unexpected $end
in /home/msaikens/public_html/forum/cache/tpl_acidtechred_ucp_profile_profile_info.html.php
on line 105
In other words: The parser had an error, because you have an error in the PhP syntax. The file ended before the code was finsihed.
Normally that means you are missing brackets (as in: unfinished if {} statements) or loops are not closed or a semicolum is missing.
If you organize your code in a way that it has structure, with indentation, newlines etc, you will pick out these errors fairly easily. In your code it is very hard because you have multiple comparisons on one line, and your lines are very long.