Uploading POST Data to PHP in C#
Introduction:
This tutorial is on how to create POST data uploader in C#.
POST or GET?
If you don't know what the difference is between POST and GET, these are the methods used by PHP to gain information from external sources that parse the data to those PHP pages. GET is URL based such as;
index.php?id=2
Id is 2.
And POST is behind the scenes for sensitive information such as passwords.
Project:
So first we want to create a basic C# project through the File > New Project wizard.
- Read more about Uploading POST Data to PHP in C#
- Log in or register to post comments
- 128 views