Statements, Comments & CharactersA PHP statement must conclude with a semicolon ";"
The double forward slash "//" represents a comment and
everything following those characters in the same line will be ignored.
For example:
<?php
// Declare a variable
var $my_var;
?>
The below are some of ack-slashed characters in PHP:
| \n |
new line |
| \r |
carriage return |
| \t |
horizontal tab |
| \\ |
backslash |
| \$ |
dollar sign |
| \" |
double-quote |
|