PHP is a Hypertext Preprocessor. This essentially means that PHP dynamically writes web pages for you. So it can query a database and print a report from it, or change CSS and such based on specific criteria.
Related Articles
*NEW
PHP Project (Simple) – Image Upload App
Previous Classes in Series: PHP Project (Simple) – Dynamic Photo Gallery Stream PHP Project (Simple) – Dynamic Photo Gallery Prerequisites: Basic LAMP, or Web Server Administration Verify pictures and folder have READ/WRITE permission for OTHER […]
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.
PHP Programming (NEW)
PHP – Sort Array by Key – ksort() and krsort()
You can sort arrays by key with ksort() and krsort().
Be the first to comment