Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 63: Line 63:
 
#* [[PHP Flow Control and Looping|Breaking Out of Nested Loops]]
 
#* [[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|Skipping Statements in Current Loop Iteration]]
 +
# [[PHP Functions]]
 +
#* [[PHP Functions|What is a PHP Function?]]
 +
#* [[PHP Functions|How to Write a PHP Function]]
 +
#* [[PHP Functions|Returning a Value from a PHP Function]]
 +
#* [[PHP Functions|Passing Parameters to a PHP Function]]
 +
#* [[PHP Functions|Calling PHP Functions]]
 +
#* [[PHP Functions|Passing Parameters By Reference]]
 +
#* [[PHP Functions|Returning Values By Reference]]
 +
#* [[PHP Functions|Functions and Variable Scope]]
  
* [[PHP Functions]]
 
 
* [[PHP Arrays]]
 
* [[PHP Arrays]]
 
* [[Working with Strings and Text in PHP]]
 
* [[Working with Strings and Text in PHP]]

Revision as of 18:40, 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
  10. PHP Functions