Stuff
public php v1 · immutable$size = count($error);echo("Size: " . $size . "<br/>");if ($size > 0) $_SESSION["errors"] = $error; echo("WOOT"); die(); header("Location: {$PATH}")// What I get:// Size: 0// WOOT// So... if $size is 0, it should not enter the if statement, right?