Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 72: Line 72:
 
#* [[PHP Functions|Returning Values By Reference]]
 
#* [[PHP Functions|Returning Values By Reference]]
 
#* [[PHP Functions|Functions and Variable Scope]]
 
#* [[PHP Functions|Functions and Variable Scope]]
 +
# [[PHP Arrays]]
 +
#* [[PHP Arrays|How to Create a PHP Array]]
 +
#* [[PHP Arrays|Accessing Elements in a PHP Array]]
 +
#* [[PHP Arrays|Creating an Associative Array]]
 +
#* [[PHP Arrays|Accessing Elements of an Associative Array]]
 +
#* [[PHP Arrays|Accessing Elements in a Multidimensional PHP Array]]
 +
#* [[PHP Arrays|Using PHP Array Pointers]]
 +
#* [[PHP Arrays|Changing, Adding and Removing PHP Array Elements]]
 +
#* [[PHP Arrays|Looping through PHP Array Elements]]
 +
#* [[PHP Arrays|Replacing Sections of an Array]]
 +
#* [[PHP Arrays|Sorting a PHP Array]]
 +
#* [[PHP Arrays|Sorting Associative Arrays]]
 +
#* [[PHP Arrays|Getting Information About PHP Arrays & other Array Functions]]
 +
#* [[PHP Arrays|Summary]]
  
* [[PHP Arrays]]
 
 
* [[Working with Strings and Text in PHP]]
 
* [[Working with Strings and Text in PHP]]
 
* [[PHP, Filesystems and File I/O]]
 
* [[PHP, Filesystems and File I/O]]

Revision as of 18:49, 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
  11. PHP Arrays