Array to string conversion error, cant find the problem, new to php. Any help would be appreciated.
<?php
$row = array(
'username' => 'Username',
'count' => 5
);
echo '<table><tr><td>'
. $rowtwo . '</td><td><a href="profile.php?user='
. $row['username'] . '">'
. $row['username'] . '</a></td><td>'
. $row['count'] . '</td></tr></table>';
?>