Skip to content

PHP

PHP Object Oriented Programming

This hands-on PHP Programming course provides the knowledge necessary to design and develop dynamic, database-driven Web pages using PHP 7. PHP is a language written for the Web, quick to learn, easy to deploy and provides the substantial functionality required for e-commerce.  

PHP 05: Functions

Rule #1. A function must return a value. Rule #2. You must create the fuction before you CALL the function. Rule #3. You must make a place to store the “returned” information to return to. [code]$storedVariable = function_name($variable1Passed, $variable2Passed);[/code]