What I want to do is take a .js file that has entries like:
passwordlist = new Array(1001)
passwordlist[1] = "49TIIJT"
passwordlist[2] = "JLPBE35"
passwordlist[3] = "JW3O988"
passwordlist[4] = "9GI6XQQ"
passwordlist[5] = "7LS6DVQ"
passwordlist[6] = "KIV8FKL"
And from a form entry when I submit a number to the script it would display the value of the variable. So if I submitted the number 5 it would display 7LS6DVQ.
Can this be done without the use of server side?
Thanks,
Steve
passwordlist = new Array(1001)
passwordlist[1] = "49TIIJT"
passwordlist[2] = "JLPBE35"
passwordlist[3] = "JW3O988"
passwordlist[4] = "9GI6XQQ"
passwordlist[5] = "7LS6DVQ"
passwordlist[6] = "KIV8FKL"
And from a form entry when I submit a number to the script it would display the value of the variable. So if I submitted the number 5 it would display 7LS6DVQ.
Can this be done without the use of server side?
Thanks,
Steve






