Tag Archives: php comments

PHP Comments

(from Full Article) We place comments in PHP code to make the code more maintainable and readable. These comments will not be viewable to the public, only to the person editing the PHP file. To comment in PHP we should prefix ‘//’ to our comment, for example: <?php //This is our comment ?> We can [...]