Originally Posted By: Mart
An array has multiple element so you can display them one by one.
Lets say your array holds the numbers 1 to 10. Displaying them on the screen could look like this.

 Code:
For $i = 0 to UBound($array)
	? $array[$i]
Next


Hey Mart,

About right, but as I want to diaply them to a user I'll put a comma in there and make the change as below.
 Code:
  'Please choose a valid brand from the list - ALL,' 
    For $i = 0 to UBound($validbrands)
       $validbrands[$i] + ','
    Next 
    @CRLF


I had done this part of the code, but wondered if there was a generic method for it.

Do I need the + in there these days? I see a bit of code written with it in, and yet others leave it out.

Pax