what would make this happen http://www.syc0tests.com/v2.0/ view the source
I assume your talking about the...
<? session_start(); ?>
Most likely caused by using short tags. Try...
<?php session_start(); ?>
That's how I would look at it. Why people continue to use 'short tags' when <?php always works (and if they do not know this , they should). What is so hard about adding php, the actual language you are using is beyond me. As far as that server is concerned it shows the php script because it is not considered PHP.