-2

I'm using this to determine if a variable is set. I am not a beginner and normally, this works (it's not complicated either)...

if(isset($ok)) { 
    [stuff happening]
}

This is the return: Parse error: syntax error, unexpected '}' in firstlaunch.php on line 6

The thing is, that's that. My file is empty but for those few lines. I'm used to fixing those types of problems but I can't see why the error is coming since that's the only PHP on my page.

Ideas?

Thanks a lot!

++++++ Edit: the full script is:

<?php 
$ok = isset($_GET['flag']);

if(isset($ok)) { 

}
?>

1 Answers1

0

Ok guys, thanks a lot for the HEX editor suggestion, it worked: I had this thing between my { }:

 

Wonder where that came from... But now my file executes!

Thanks!