Im attaching the code here!. I got an unexpected $end on line 289 Can anybody help me pls!!
Line 289 is the last line that contains </html> tag
you started a condition but did not closed the bracket.
if(is_loggedin()) {
you can do it right this:
if(is_loggedin()==false) die(); ... ... ...