how do i read this into a list in Developer Help
|
|
Code:
test2() var/http[]=world.Export("http://totalfungames.comoj.com/secretpagefck.php") if(!http) world<<"error" return null var/Data=file2text(http["CONTENT"]) world<<Data
|
Problem description:
I want to read the file from the site, putting each line into an index of a list. like this list[1]="line1" , list[2]="line2". i don't have a clue how to do it :(
|