i tray this to Post in the txt file but it not work why?????????????????????
Func vv($url, $postdata =" '')
Local $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("POST", $url, False)
If @error Then Return SetError(1, 0, 0)
$oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
$oHTTP.Send($postdata)
If @error Then Return SetError(2, 0, 0)
Local $sReceived = $oHTTP.ResponseText
Local $iStatus = $oHTTP.Status
If $iStatus = 200 Then Return $sReceived
Return SetError(3, $iStatus, $sReceived)
EndFunc ;==>_HTTP_Post