I have code in VB.net code where we are entering a php url
IEPostStringRequest "www.example.com/call.php?" & Str1,
Sub IEPostStringRequest(URL, FormData)
On Error Resume Next
'Create InternetExplorer
Set WebBrowser = CreateObject("InternetExplorer.Application")
'You can uncoment Next line To see form results As HTML
WebBrowser.Visible = False
'Send the form data To URL As POST request
Dim bFormData() As Byte
ReDim bFormData(Len(FormData) - 1)
bFormData = StrConv(FormData, vbFromUnicode)
WebBrowser.Navigate URL, "_Self", , bFormData, _
"Content-Type: application/x-www-form-urlencoded" + Chr(10) + Chr(13)
Do While WebBrowser.busy
' Sleep 100
DoEvents
Loop
WebBrowser.Quit
End Sub
Now i want to fetch these parameters value in this www.example.com/call.php page. when i am tried this $_POST['str']; but getting nothing.
Kindly help me. Thank you in advance.