line 3a 83 syntax error 2c unexpected end of file php

Solutions on MaxInterview for line 3a 83 syntax error 2c unexpected end of file php by the best coders in the world

showing results for - "line 3a 83 syntax error 2c unexpected end of file php"
Claudia
18 Apr 2016
1The "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.