怎樣才能讀取internet上之純文字檔案?(編號:3959)

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.