POST Data

Process POST Data in PHP

Submitted by Yorkiebar on
Introduction: This tutorial is on how to handle POST data in PHP. POST? POST Data in PHP is data that has been sent behind the scenes from another page, or external source, which can be accessed by the page being sent the information. POST is one of the two methods available to use through HTML Forms.

Uploading POST Data to PHP in C#

Submitted by Yorkiebar on
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.