i have no background with arrays, so please treat me like an idiot.
what i am doing:
i have a task management system that can share a task between 1-50 different users.
whenever a user adds a note or takes themselves off the task, i would like for each user to get an email.
what i want to do with an array:
im guessing create a dynamic array
dim strArray() as string
moddata.databaseconnection("select email from system_users")
do until adors.eof = true
strarray() = adors.fields("email").value
adors.movenext
loop
databasedisconnect
dim i as integer = 0
do while i <= strarray() 'however i get the max count from the array'
emailfunction(email, message)
i% = i% + 1
loop
that is a rough example, but i hope you get the idea of what i am doing.
just dont know how to do it.
thanks