Suspicious loop (maybe infinite?)

Sample code:

//...
for ($i = 0; $j != 15; $i++)      // Suspicious loop (maybe infinite?)
    echo $i;
//...

Intersection of variables used in step part of the loop and variables used in condition part of the loop is empty. This is good candidate for infinite loop.