read a text file online?
BlitzMax Forums/BlitzMax Programming/read a text file online?
| ||
| 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" |
| ||
something like...
import brl.httpstream
import brl.textstream
local text:String = LoadText("http::www.google.com/text.txt")
|
| ||
| thanks |