Is it possible to put 2 images in 1 cell loading with XML?

I am building the grid with XML and would like to have 2 images in one cell. Is this possible? I’m using this code for one image:

echo "<cell><![CDATA[ img/user_comment.png^Comment^/?page=editcomments&class=".$class."&student_id=".$student['personnel_id']."&test=".$testnumber."&type=".quote_smart($type)."&popup','mywindow','status=0, toolbar=0, location=0, menu=0, directories=0, scrollbars=0, height=475, width=550'); win.focus(); ]]>";

You can use any html in the value of a cell.
Foe example:
<![CDATA[]]>

Thank you, that is working perfectly!