I am expecting this to be a basic syntax error I overlooked, but I can\'t figure it out.
In a PHP script, I keep getting the following error.
Parse e
You can not put
$connection = sqlite_open("[path]/data/users.sqlite", 0666);
outside the class construction. You have to put that line inside a function or the constructor but you can not place it where you have now.