I don't see what's wrong with the end, but maybe someone else will, this is a simplified version of the script it's running on.Parse error: parse error, unexpected $end in...
Code: Select all
<?php
//some things are determined from the $_POST array, it's determined whether to use a header redirect or keep them here
...
if (sizeof($fines) == 0) {
header("Location: out2.php");
} else {
?>
Some HTML stuff comes in here, which the user sees if they weren't redirected.
<?php }
//It says the problem is on the following line.
?>