Hmm, are people getting confused between < and <= ? for($icount=0;$icount<11;$icount++) (is less than 11) for($icount=0;$icount<=10;$icount++) (is less than or equal to 10) Both iterate 10 times. Michael Kubler *G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz> Per Jessen wrote:
Tom Sinclair wrote:Per Jessen wrote: for($icount=0;$icount<11;$icount++)Iterates 10 times?? Hmm10, 11 - no big difference is there? /Per Jessen, Zürich