* Variable-works like abox that a value can be placed in.
* Strings - echo, print, single vs. double quotes, are used to
manipulate text, by displaying , combined or showing data about a string.
* PHP code block- the section of the page were functions, strings, etc go.
* PHP comment- allows for information to be placed in page/function with being
displayed
* Array - A special varible that can contain multiple values.
* Array - Associative-the ID key is linked to a value
* Array - Numeric-contains a numeric index for a list
* Array - Multidemensional-am array with several arrays inside.
* Operators - are used to perfom operations on varibles. Mathamatical functions
like basic math, a value can be assigned to varible or vaibles can be compared.
* Assignment
* Arithmatic
Addition, Subtraction, Multiplication,Division
* Append
* Comparison Operators
Equal to, Not equal to, Less than, Greater than,
Greater than or equal to, Less than or equal to
* Logical Operators -
And, ||, Or, ! and Not
* Conditional Statements-allow different actions to be performed for different
responses. This allows an action if something is true, another action if its
false or to pick out a specific action.
If, If - then, If - then - else, switch
* Loops - allow for an action to repeated until a condition is met or the
action is terminated
For, Do, Do While, Foreach
These are some basic Php functions. There are many more out there.
As I learn more about them, hopefully this site will become more functional.
To see a basic php demo page click HERE!
