If you decide to omit the closing PHP tag, then the last line of the file should be ended with semi colon. If you add the closing tag then last line doesn't need to end with semi colon.

<?php

echo "First line";
echo "Last line"

The above code throws error as it neither has closing tag nor semicolon ending. So it should be replaced with either of the below two

<?php
 
echo "First line";
echo "Last line";

or

<?php
echo "First line";
echo "Last line" ?>

0 comments:

Blog Archive

Total Pageviews

Popular Posts