that line is just a comment to explain what the next line:
@session_start();
does.
any line that starts with // is a comment, not actual code.
comments are in place to explain what the code is doing.
if the line starts with //, it is for human consuption, if not, it is for the php processor.


