Depends on what you&#39;re counting with.<br><br>I needed to loop over [A-Z] to make some anchors and stumbled across something interesting.<br><br>for ($i=&quot;A&quot;; $i &lt; Z; $i++):<br>&nbsp; echo($i);<br>endfor;<br><br>
Gives ABCD{..}XY<br clear="all"><br>for ($i=&quot;A&quot;; $i &lt;= Z; $i++):<br>
&nbsp; echo($i);<br>
endfor;<br><br>Gives ABCD{..}XYZAABB{..}<br><br>So I&#39;m using<br>for ($i=&quot;A&quot;; ($i &lt;= Z and $i != &quot;AA&quot;); $i++):<br>

&nbsp; echo($i);<br>

endfor;<br><br>This produces the desired results.<br><br>From what I understand the default php behavior matched perl in that Z++ = &quot;AA&quot; not &quot;]&quot; as it would in C (so I &#39;ve read)<br><br>Is there a better way to do this?
<br>&nbsp;<br>-- <br>In vino veritas.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[In wine there is truth.]<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-- Pliny