Alternative to for($i

Gilmichel

New member
Hello,

Is there an alternative in exeouput for the php following function:
for($i=0;$i<$count;$i++){
}

If yes, can you give an example, please ?

Thank-you, and happy new year 2016
Gilbert
 
Thank-you for your suggestion davebaldwin, but it is not about a php function that i am asking for help but about an exeoutput function (or delphi function that works in exeouput to be more precise).
 
Last edited:
Sure like for Delphi a loop can be created in HEScript language:
Code:
var
 i: integer;

begin
 for i := 0 to Count do
 begin
  ....
 end;
 
Back
Top