Working with Images – PHP
We need to create an HTML form that allows you to choose the file to be uploaded. Note: please make sure you have form method…
We need to create an HTML form that allows you to choose the file to be uploaded. Note: please make sure you have form method…
Almost in every web application sending automated email by system is the common requirement. So, it’s very common and important part that must be known…
The basic task of both cookies and sessions is to store visitor data so that it can be accessed by every page on a website.…
The Include() and require() statements are used to insert codes written in other files, in the flow of  execution. The main of using include and…
Ajax (Asynchronous Java script And XML)  Introduction In Jesse Garrett’s original article that coined the term, it was AJAX. The “X” in AJAX really stands for XML…
Numeric Data Types: INT (Integer): Int data type represents an integer of normal size. So simply it can used to store numeric value. There are…
Difference Between while and do…while Loop: With a while loop, the condition to be evaluated is tested at the beginning of each loop statement, so…
A While loop is used when we have to repeat a set of statements as long as the condition is false. It could be the…
If –else statements: if…else statement – executes set of codes if a condition is true and another code if the condition is false Within a…
PHP for loop can be used to traverse set of code for the specified number of times. For example if you want to repeat something…