How to make result of search in two columns?
I have made so, but something here is not correct
<tr><td valign="top">
<%loop link_results_loop%>
<%include link.html%>
<%if link_hits = 2*int($link_hits/2)%>
<%if row_num = $link_hits/2%>
</td><td>
<%endif%>
<%else%>
<%if row_num = ($link_hits+1)/2%>
</td><td>
<%endif%>
<%endif%>
<%endloop%>
</td></tr></table>
Thank for the help!
I have made so, but something here is not correct

Code:
<table cellpadding="0" cellspacing="0" border="0"> <tr><td valign="top">
<%loop link_results_loop%>
<%include link.html%>
<%if link_hits = 2*int($link_hits/2)%>
<%if row_num = $link_hits/2%>
</td><td>
<%endif%>
<%else%>
<%if row_num = ($link_hits+1)/2%>
</td><td>
<%endif%>
<%endif%>
<%endloop%>
</td></tr></table>
Thank for the help!