PHP array quickie


if (isset($_POST['borough'])) {
	$array = $_POST['borough'];
	foreach($array as $test)
	$bors .= "$test. 
";
}

New to arrays, can anyone tell me why this is only inserting full stops into my database?

Ta.