Related Articles
PHP – Comments
Commenting code allows you to add notations to you script to explain why it was written how it was. You can also use commenting to keep specific code from running during troubleshooting. <?php /* […]
PHP – Viewing PHP Environment with PHPinfo()
The PHPinfo() function prints out a report of al of the PHP configurations and settings for your server. <?php phpinfo(); ?>
Be the first to comment