Author Archive
PHP Programming
File Uploading in PHP
There is no doubt that there are countless reasons why you may want to upload files when working online. Sometimes, it is to initiate a file transfer while at other times it is to save the file and the list continues. Did you k...
PHP Programming
How to Use HTML Forms with PHP
HTML form validation with PHP is another interesting topic that should arouse the attention of every programmer. HTML forms are often used to capture user details via a browser. There are many parts of a HTML form which are val...
C/C++ Programming
How to Program a Simple Calculator in C++
Have you ever though of coding a very simple calculator in C++? It is true that so far, we have learned so much in C++. We have learnt of functions, variables, functions and conditional statements. All that and much more is in...
C/C++ Programming
How to Use Switch Statements in C++
Switch statements are used as a way of carrying out deep conditional statements. Such statement ensure that a given variable is tested for equality in relation to given values. Each of these values is referred to as a case and ...
C/C++ Programming
How C++ Structs Work
A structure refers to data elements that are grouped together using a single name. The data elements in a structure are called members and they can be composed of different data types and lengths. There is much similarity betwe...
PHP Programming
How to Set up and Use Cookies in PHP
Do you know how to set cookies in PhP? If you have not, then, you have to know that they are a manner in which data which tracks or identifies returning users is stored on the remote browser of the said user. If you have used P...
12