php

PHP Syntax

Every PHP script executes on a server. When the server process the script, it sent back the output in the form of plain HTML to the browser <?php //Your PHP code ?> Note: You can write your code in a text editor. There are various text editors for PHP like sublime text, …

PHP Syntax Read More »

PHP Variables

A variable can be considered to be a sort of container to store some value or information, just like we use a bucket or drum to store water! At times, there is a need to store some values or information for future usage in programming. For this purpose we use variables. …

PHP Variables Read More »