I'm guessing you just can't save an array of a custom type with the save array command. Most likely, you'll need to create a custom function to save an array to a file.
And alternative to what you have done is to create a multidimensional string array:
input "How many members to add?" ,num
dim membersarray$(num,3)
for x=1 to num
input "Name: " ,membersarray$(x,1)
input "Address: " ,membersarray$(x,2)
input "Phone: " ,membersarray$(x,3)
next x
cls
print "This is the data you typed in..."
for p=1 to num
for dataNum = 1 to 3
print membersarray$(p,dataNum)
next
next p
print "Would you like to save this array to 'info.dat'?"
input "Y/N?" ,arraysave$
if arraysave$ = "y"
save array "required/info.dat", membersarray$(num,3)
print "You saved the array"
endif
if arraysave$ = "n"
print "You did not save the array"
endif
I think that this should work better for you.
-H4ck1d
There are 10 types of people, those who understand binary and those that don't.