Is it possiable to open a file for reading form a website?
e.g.
ServerFile=ReadFile("www.darknimbuspro.com\RO.txt")
e.g.
ServerFile=ReadFile("www.darknimbuspro.com\RO.txt")
connection = OpenTCPStream ( "www.darknimbuspro.com", 80) If connection Print "Connected! Sending request..." WriteLine connection,"GET <a href="http://www.darknimbuspro.com/RO.txt" target="_blank">http://www.darknimbuspro.com/RO.txt</a> HTTP/1.0" WriteLine connection, Chr$( 10 ) If Not Eof( connection ) Print "Request sent. Waiting for reply..." While Not Eof( connection ) Print ReadLine( connection ) Wend Print "All data received." Else Print "ERROR: Failed to send request." EndIf CloseTCPStream connection ; EDIT - Forgot to include this command. Else Print "ERROR: Failed to connect to server." EndIf Print "Press a key to quit." WaitKey End