Guy Posted December 5, 2003 Posted December 5, 2003 ok a few of things you put start loop thers no such thing as start loop. i put "; start loop" as a comment to show you what was happening. just change "start loop" to "Do" so you get Do ........... Until Also the point of using an array is to cycle through it. Dim $array[5] is calling an array with 5 'slots' in it so... if you have 7 accounts you want to access create an array with 7 slots. Then you just assign values to your array slots like any other variable Dim $array[3] $array[0] = whatever $array[1] = whatever $array[2] = whatever NOTE that you start at 0, ie for $array[3] there is NO such thing as $array[3] Also, dont use "-" in your variables. just change "$mulerz-clpl" Hope This helps
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now