PHP
Oct 15

Comments in PHP are similar to comments that are used in HTML. The PHP comment syntax always begins with a special character sequence and all text that appears between the start of the comment and the end will be ignored by the browser.In HTML a comment’s main purpose is to serve as a note to you, the web developer or to others who may view your website’s source code. However, PHP’s comments are different in that they will not be displayed to your visitors. The only way to view PHP comments is to open the PHP file for editing. This makes PHP comments only useful to PHP programmers. Continue reading »