Sure, here is my routine for pulling or pushing web data. It works fine when I'm running the code on my laptop, but on my phone, nothing.
function web_data(action as string, ifile as string)
//if internet is on...
if GetInternetState() =1
response$="fail"
//set up web
http = CreateHTTPConnection()
SetHTTPHost( http, "www.xxxxxxx.co.uk", 0)
//send or get file from web
if action="save"
SendHTTPFile(http , "uploadfile.php" , "" , "data\" + ifile)
elseif action="load"
//always read file to temp, as we may not want to overwrite our local data
GetHTTPFile( http, "mobile_data\"+ifile, "data\temp.txt" )
endif
//take 5 seconds to see if file updated
t=timer()
repeat
Sync()
until GetHTTPResponseReady( http ) = 1 or timer()>t+5
//if complete set success
if GetHTTPResponseReady( http )=1
response$="success"
endif
CloseHTTPConnection(http)
DeleteHTTPConnection(http)
else
response$="nointernet"
endif
endfunction response$