THE FORUM IS IN READ-ONLY MODE
Recursive problem
-
How do i get my recursive to do this:
i got 9 parses
i want it visit the first code parsed, then the second one etc.Right now, when i i insert the variable in the postdata it takes all the 9 parsed codes in and it will look like:
Post Data: open=orderdetails&orderId=[O7517O10P31, OQO5P1OO531, O01NQ175O31 etc etcand i want it to check 1 by 1
-
make a variable list with all the codes
make a variable named i or anything else and set it to zero
create a while loop
while loop should be the length of your variables you have in the list in this case 9 times
and in the while loop send a request like this:
Post Data: open=orderdetails&orderId=<YOUR VARIABLE LIST NAME [i]>
here you probably want your keycheck and parse block
increment i
end your while loop
-