Rogue checkbox appearing!

folks.

Code below gives me an odd checkbox with no value at the end. Any idea how I trim this off?


$arr = split("
", $row['properties']); 

foreach($arr as $key => $value){ 
echo "<input name='properties[]' type='checkbox' value='$value'>$value"; 
echo "<br>";  
}