Heh, I'm alright at PHP, nothing special, but I'll try to help.
Ok, replace this
<font class="headlineText"><? echo row->headline; ?></font>
<br>
<font class="storyText"><? echo row->story; ?></font>
with this:
<font class="headlineText"><? echo $row->headline; ?></font>
<br>
<font class="storyText"><? echo $row->story; ?></font>
Since $row is a variable, I would imagine you would need to prefix row with a $ when echoing it.
Ok, good luck.