Save it to a file.
Try this:
REM -- Get info from user
input "Your question here",info$
REM -- Save Info to a file
open to write 1, "save.txt"
REM -- Write the info string to the file
write string 1,info$
REM -- Close the file
close file 1
and then to read your information:
REM -- open the file to read
open to read 1, "save.txt"
REM -- start a loop that only ends until the end of the
REM -- file has been reached
while file end(1) = 0
REM -- read the string into a variable
read string 1, info$
end while
REM -- the string of info should now be within info$
You must make sure that the file doesn't already exist though, otherwise the command will fail, so check for it's existance using
file exist()
So:
if file exist("save.txt") then delete file "save.txt"
REM -- and continue on with you code
And there you go.
P4 2.4Ghz HT, 512MB RAM, ATI Radeon 9600 128MB, 19" Viewsonic, 80GB HD