I have a tiny while loop on my page, but it's also writing every iteration of the loop on my page, and I want those iterations (marked on the screenshot) to be not shown, here is the code:
while ($i < ($blocksize / 2) - 1) {?>
<span class="nowrap"><?= $a.','.$b;?></span>
<?= $a++; $b--; $i++;?>
<span class="nowrap"><?= $b.','.$a;?></span>
<?= $a++; $b--; $i++;?>
<?php };?>
And the output screenshot: Output
Please help me to solve this problem, Thanks everyone!

<?= $a++; $b--; $i++;?>to<?php $a++; $b--; $i++;?>.<?=is the same as<?php echo.