read a text file online?

BlitzMax Forums/BlitzMax Programming/read a text file online?

slenkar(Posted 2009) [#1]
how would I read a text file online?

e.g.
if the URL is

www.google.com/text.txt
for example

EDIT- oh never mind its

readstream "http::www.google.com/text.txt"


Brucey(Posted 2009) [#2]
something like...
import brl.httpstream
import brl.textstream

local text:String = LoadText("http::www.google.com/text.txt")



slenkar(Posted 2009) [#3]
thanks