Hello,
I have a vb.net application where i am sending error string to a php page to process it.
Dim errorString as String = "test string"
Dim request As WebRequest = WebRequest.Crea te("index.php" )
request.Method = "POST"
Dim byteArray As Byte() = Encoding.UTF8.G etBytes(errorSt ring)
request.Content Type...