Mega Code Archive

 
Categories / Php / Language Basics
 

In PHP, everything between and is considered a comment

// or # may be used to "comment out" the remainder of a single line: <?php     $var = "foo";        // This is all ignored     $var = "bar";        # so is this ?>