Also note that $count++ is a post-increment.
So if you used:
$count = 1;
echo $count++;
It would display 1, then add 1 to $count making it 2.
So if you want the value of the variable passed to the statement it's in and then incremented by 1, that's fine.
If not, you'd use ++$count.
So I think we've all covered every possible aspect of the subject, lol 😉