Starting and Ending Tags
Like in other languages, PHP codes always start with tag.
One example of a code is written below:
echo "PHP ! I am gonna get you.";
?>
The above code contains only three lines. We started the code with the like mentioned in the first sentence. The ECHO code helps you display combinations of strings and variables in your desired page. Always remember that whatever you want to display in your page must start and end with a double quotation mark. The semi-colon (;) is essential and means that it is the end statement in an PHP code.
