while ($row = mysql_fetch_array($result))
Is nice command which iterates through every line, if $result
is a MySQL query. It iterates every single line, one by one. See, I've got situation like:
<tr>
<td>Source 1</td>
</tr>
<tr>
<td>Source 2</td>
</tr>
And it is kind of part of design, I can't really change the order or mix this up. Is it possible to call ID's 1 2---3 4---5 6 in place of 1-2-3-4-5-6?