jarv, RMcLeod's example will do what you need, but I wanted to help you understand what it means.
First off, he changed your statement quotes from double to single. For HTML tags, you need to use double quotes around the attributes. So:
PHP Code:
echo '<div class="entry">'
instead of
echo "<div class='entry'>"
And using periods in between the parts of the echo statement is called concatenation. They basically glue parts of a statement together. So you can glue together the div HTML and the row variables and the space in between. Hope that helps some. Good luck!