//Example
//Identify the screen field name of html code
sPostParameter is string = "name = Adriano"
IF HTTPRequest("www.mysite.com", "", "", sPostParameter) = True THEN Info("Request OK, result:", HTMLToText(HTTPGetResult(httpResult))) END
HTTPCreateForm("FORM") HTTPAddParameter("FORM", "name", "Adriano")
IF HTTPSendForm("FORM","www.mysite.com" ) = True THEN Info("Request OK, result:", HTMLToText(HTTPGetResult(httpResult))) END |