i'm using the example in the help file. however, i get a "file not found" when trying to retrieve a webpage. after much head scratching, i realized it was probably because my webserver uses 'virtual servers', which is multiple domains on a single ip address. i'm no html expert, but it apparently determines what webste to retrieve by the way the website is embedded in the request somehow.
here's the code i'm using. anyone know how to retrieve a html file like this?
[CODE]
local buffer$, site$
local entire_page$, htmlfile$, link$
local pos&, length&
site$ = "www.powerbasic.com"
file$ = "http://-
here's the code i'm using. anyone know how to retrieve a html file like this?
[CODE]
local buffer$, site$
local entire_page$, htmlfile$, link$
local pos&, length&
site$ = "www.powerbasic.com"
file$ = "http://-
Comment