Related Articles

PHP Programming (NEW)
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 Programming (NEW)
PHP – Naming Array Keys
Naming Keys in Arrays makes it easier to verify you are interacting with the appropriate data in an array.

*NEW
PHP – Time and Date Functions
The time() and date() functions allow you to add time data to your applications. Time() provides the seconds since Unix Epoch (January 1, 1970) which is useful for basic timing in your application. The date() […]
Be the first to comment