Jump to content

Recommended Posts

Posted

How to get response form php page after form is submitted? php script have form which submits some data and then return some information. Is it possible to get this information?

Will this work

$oIE = _IECreate ("http://www.example.com/script.php")

$oForm = _IEFormGetObjByName ($oIE, "form_img-submit")

$oQuery = _IEFormElementGetObjByName ($oForm, "image")

_IEFormElementSetValue ($oQuery, $sPath)

_IEFormSubmit ($oForm)

_IELoadWait ($oIE)

$sText = _IEBodyReadText ( $oIE )

Posted (edited)

Get and use something like this ~

#include "IncWinHttp.au3"

MsgBox(0, "", HTTPSend(@ScriptDir & "stuff.zip"))

Func HTTPSend($File)
   Local $hOpen, $hConnect, $sRead, $hOpen = _WinHttpOpen(), $hConnect = _WinHttpConnect($hOpen, "website.com"), _
   $sRead = _WinHttpSimpleFormFill($hConnect, "Name_Of_PHP_Script.php", "index:0", "name:file", $File)
   _WinHttpCloseHandle($hConnect)
   _WinHttpCloseHandle($hOpen)
   Return $sRead
EndFunc   ;==>HTTPSend
Edited by THAT1ANONYMOUSEDUDE

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...