Quotation Marks in PHP

You can use two different kind of quotes marks in PHP:

Single quote, also known as apostrophe: ‘

Double quote: ”

You can use either single or double quotes, so long as you use them in pairs (single with single, double with double).

There are subtle and important differences between the single and double quotes, but for purposes of this class you can ignore the differences.