Uploading POST Data to PHP in Visual Basic.NET

Introduction: This tutorial is on how to upload POST data to a PHP file on a web server or localhost through Visual Basic .NET. Why POST? POST is the method used to upload sensitive data such as passwords, as opposed to using the PHP GET method which will simply show all data in the URL bar; GET - http://www.website.com/page.php?password=ThisIsMyGETPassword POST - http://www.website.com/page.php Both example sites would receive the same information, but the POST one is undercover and therefore slightly more secure. Why Only Slightly More Secure?

Constant Data Members and Objects

Constant Data Members and Objects

In this tutorial you will learn: 1. What are Constant Data Members? 2. What are Constant Objects? 3. Why to use Constant Data Members and Objects? 4. How to use Constant Data Members and Objects? 5. C++ syntax What are Constant Data Members? The data members that are once initialized and can never be changed are called constant member functions. Constant member functions are just like normal data members, only ‘const’ key word is added before writing the data type of the data member of the class.

Static Data Members in C++

Static Data Members

In this tutorial you will learn: 1. What are Static Data Members? 2. Why to use Static Data Members? 3. How to use Static Data Members in program? 4. Basic C++ syntax What are Static Data Members? Static members are those data members that retain their value , whenever the static member is reused in the program. Static data members store the latest value in them so that the value will be used for next time when the function that makes use of static data member is called.