Line : 83 -- syntax error, unexpected end of file php

PHP
The "unexpected end of file" error usually means you have a php block unterminated. The parser reads off the end of the file searching for block termination, usually } . In your case, the } right before your second <? php is the culprit.
Source

Also in PHP: