Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 51: Line 51:
 
#* [[PHP Operators|Concatenation of Numbers and Strings in PHP]]
 
#* [[PHP Operators|Concatenation of Numbers and Strings in PHP]]
 
#* [[PHP Operators|PHP Execution Operator - Executing Server Side Commands]]
 
#* [[PHP Operators|PHP Execution Operator - Executing Server Side Commands]]
 +
# [[PHP Flow Control and Looping]]
 +
#* [[PHP Flow Control and Looping|PHP Conditional Statements]]
 +
#* [[PHP Flow Control and Looping|The PHP if Statement]]
 +
#* [[PHP Flow Control and Looping|The PHP if ... else Statements]]
 +
#* [[PHP Flow Control and Looping|PHP Looping Statements]]
 +
#* [[PHP Flow Control and Looping|PHP for loops]]
 +
#* [[PHP Flow Control and Looping|PHP while loops]]
 +
#* [[PHP Flow Control and Looping|PHP do ... while loops]]
 +
#* [[PHP Flow Control and Looping|PHP switch Statements]]
 +
#* [[PHP Flow Control and Looping|Breaking a Loop]]
 +
#* [[PHP Flow Control and Looping|Breaking Out of Nested Loops]]
 +
#* [[PHP Flow Control and Looping|Skipping Statements in Current Loop Iteration]]
  
* [[PHP Flow Control and Looping]]
 
 
* [[PHP Functions]]
 
* [[PHP Functions]]
 
* [[PHP Arrays]]
 
* [[PHP Arrays]]

Revision as of 18:22, 7 June 2007

  1. The History of PHP
  2. An Overview of PHP
  3. Creating a Simple PHP Script
  4. Commenting PHP Code
  5. An Introduction to PHP Variables
  6. Understanding PHP Variable Types
  7. PHP Constants
  8. PHP Operators
  9. PHP Flow Control and Looping