Suppose there is a TEXT file on INTERNET like this,
"I am a man.
We are good friend.
......."
I would like to put the above content one line by one line into array. For example,
array(0)="I am a man."
array(1)="We are good friend."
array(2)=........
array(3)=........
How to do this? Thank you very much.