All pastes #2105409 Raw Edit

Stuff

public php v1 · immutable
#2105409 ·published 2012-01-23 15:30 UTC
rendered paste body
$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?