Try this
PHP Code:
<?php
$i = 1;
foreach ($obj->results as $result) {
// show regular result
echo template_simple ('{company_blurb} <img src="/templates/{user_id}/logo.jpg" border="0" alt="company_name" border=0 align=right >}', $result);
if ($i == 1){
// Add your extra info for the first line here
}
$i++;
}
?>