PHP tutorial : Basic PHP tags
Author :
mohit
Blog :Mohit Kumar
Date: 1/10/2012 3:45:07 PM
We can use several types of tags to define the start and end of PHP code. I have illustrated “few” of them that worked for me. The first one is basic echo with No tags, so it will just output the echo.
echo "No Tags"
The second one is the most commonly used tag in PHP. It is the widely accepted standard.
<?php echo "This is the most commonly used tag" ?>
The third , is used very frequently , (Haven’t used this in WordPress though)
<? echo " Another tag "?>
And the last, is the old style (familiar with javacript declarations)
<script language="php">
echo "this is php using script language"
</script>