Comments are ignored by the PHP parser. PHP comments can be defined in one of the following ways:
Examples:
// - simple PHP comment.
# - alternative simple PHP comment.
/*...*/ - multi-line comment blocks.
Example:
CODE
<?php
// This is a simple PHP comment
# This is a second simple PHP comment
/* This is a PHP multi-line
comment block. It can span as
many lines as necessary */
?>
// This is a simple PHP comment
# This is a second simple PHP comment
/* This is a PHP multi-line
comment block. It can span as
many lines as necessary */
?>
discuss this topic to forum
