Code Cohabitation (Chapter 4)

Main Lab 4 Page


PHP code, when executed correctly, will not display to client-side web browsers. As one can see from the following paragraph, which is encapsulated in a block of PHP code.

Hello World! I'm using PHP!


The use of the 'instruction terminator', or semicolon (;), at the end of every line is essential, particularly when one is using multiple PHP commands, in a single block.

If one is missing, the entire script could fail to parse correctly, and the page will fail to load in any capacity.

If the following block of PHP was missing the semicolon in the middle, nothing on the page would load. I know, I tested it.

I am trying to produce an error

Was I successful?