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" ?>

Related Posts:

  • Home Icons                                            … Read More
  • Difference between SSL, TLS, and HTTPS? TLS is the new name for SSL. Namely, SSL protocol got to version 3.0; TLS 1.0 is "SSL 3.1". TLS versions currently defined include TLS 1.1 and 1.2. Each new version adds a few features and modifies some internal details. … Read More
  • Error: The used table type doesn't support FULLTEXT indexes? Wow! I got this error when i am creating a below table with FULLTEXT indices. The reason for this exception is "Full-Text Search is supported only with MyISAM Engine before MySQL version 5.6" CREATE TABLE comment( &nbs… Read More
  • How to install nodejs in Windows 7? v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} I want to use javascript on my ongoing moodle development work. But the lat… Read More
  • How to set corporate proxy for NodsJs? I tried to install  a GRUNT (which a javascript task runner to perform repetitive tasks like minification, compilation, unit testing, linting, etc...) but getting network proxy configuration settings error. So started g… Read More

0 comments:

Blog Archive

Total Pageviews

15579

Popular Posts