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 09: Working in Groups
Step 1 – Sign up for Helix Team Hub Step 2 – Download the GetHub Desktop Software Step 3 – Steps to Building a Web Application Step 1 – Design your site – build out your pages using Balsamiq. Step 2… Read More »PHP 09: Working in Groups
PHP 07: CRUD
Create Read Update Delete
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]
PHP 04: Loop and Decision Structures
The first is the decision structure. If, Else If, and Else [code]if(condition 1){ echo "Condition 1 was true!"; }elseif(condition 2){ echo "Condition 2 was true!"; }else{ echo "Condition 1 and Condition 2 were NOT true!"; }[/code] Things to note: 1.… Read More »PHP 04: Loop and Decision Structures
PHP 03: What is PHP?
Commenting // – single line comment /* multi-line comment */ Quotes Single quotes will print exactly as seen, not caring about $. Double quotes will print recognizing variables starting with $. PHP requires a Server (Server side programming language) Since… Read More »PHP 03: What is PHP?
PHP 01: Text Editors
So by far, my most favourite PHP editor is Atom by GitHub. Atom by GitHub (Download Now) If you are looking for a pretty good PHP editor that is free – Atom may be the way to go. There is a… Read More »PHP 01: Text Editors