Just to twist things around a bit, because I am not sure how they are actually being inputted, but I imagine they could get more than one space in them, so I would personally explode at the comma and trim the results to remove the whitespace.
$Nettlink = explode(',', $row['Nettlink']);
foreach ($Nettlink as $value)
{
echo '<a target="_blank" href="' .trim( $value) . '">' . trim($value) . '</a><br>';
}
But that's just me....