PHP File Upload- In this tutorial, we will learn how to upload files on a remote server using a simple HTML form and PHP. You […]
Read MoreCategory: WordPress
Arrays in PHP
An array is a special type of variable that can hold many values at once, all accessible via a single variable name. Arrays are very […]
Read MorePHP Form Handling
In this tutorial, we will discuss PHP form handling. You will learn how to collect user-supplied form data using $_POST, $_GET, and $_REQUEST methods from […]
Read MorePassing argument to function in PHP
Passing argument to function PHP provide option to pass the values/parameters to the function, you can pass any number of the parameters to the function […]
Read MoreVariables & Data Types in PHP
A Variable is simply a container i.e. used to store both numeric and non-numeric information. Variable is the name of a memory location. Rules for […]
Read More