Help for this page

Select Code to Download


  1. or download this
    @itemsarray = ('zero', 'one', 'two', 'three', 'four', 'five', 'six');
    
    ...
        print ", " unless $i == $#itemsarray;
    }
    print ");";
    
  2. or download this
    var items = new Array('zero', '0', 'one', '1', 'two', '2', 'three', '3
    +', 'four', '4', 'five', '5', 'six', '6');
    
  3. or download this
    for(var i = 0; i < items.length; i += 2) {
        document.forms[0].selectbox.options[i/2] = new Option(items[i], it
    +ems[i+1]);
    }