para incremento de php de bucle por 2
for ($i=1; $i <=10; $i+=2)
{
echo $i.'<br>';
}
Wild Weasel
for ($i=1; $i <=10; $i+=2)
{
echo $i.'<br>';
}