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 – elseif Statements
elseif statements allow you to check to see if any of a number of conditions are true before failing out to the else in an if statement.
*NEW
PHP – Upload File with HTML Form ($_FILES)
With an HTML form and PHP you can upload files to your web server. When you use $_FILE in PHP you are able to access information about the file stored in the $_FILE array. Prerequisites: […]
Be the first to comment