Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 86: Line 86:
 
#* [[PHP Arrays|Getting Information About PHP Arrays & other Array Functions]]
 
#* [[PHP Arrays|Getting Information About PHP Arrays & other Array Functions]]
 
#* [[PHP Arrays|Summary]]
 
#* [[PHP Arrays|Summary]]
 +
# [[Working with Strings and Text in PHP]]
 +
#* [[Working with Strings and Text in PHP|Changing the Case of a PHP String]]
 +
#* [[Working with Strings and Text in PHP|Converting to and from ASCII Values]]
 +
#* [[Working with Strings and Text in PHP|Printing Formatted Strings in PHP]]
 +
#* [[Working with Strings and Text in PHP|PHP printf formatting specifiers]]
 +
#* [[Working with Strings and Text in PHP|Finding the Length of a PHP String]]
 +
#* [[Working with Strings and Text in PHP|Converting a String into a PHP Array]]
 +
#* [[Working with Strings and Text in PHP|Removing Leading and Trailing Whitespace from a PHP String]]
 +
#* [[Working with Strings and Text in PHP|Comparing Strings in PHP]]
 +
#* [[Working with Strings and Text in PHP|String Comparison Functions Return Value]]
 +
#* [[Working with Strings and Text in PHP|Accessing and Modifiying Characters in String]]
 +
#* [[Working with Strings and Text in PHP|Searching for Characters and Substrings in a PHP String]]
 +
#* [[Working with Strings and Text in PHP|Extracting and Replacing Substrings in PHP]]
 +
#* [[Working with Strings and Text in PHP|Replacing All Instances of a Word in a PHP String]]
  
* [[Working with Strings and Text in PHP]]
 
 
* [[PHP, Filesystems and File I/O]]
 
* [[PHP, Filesystems and File I/O]]
 
* [[Working with Directories in PHP]]
 
* [[Working with Directories in PHP]]

Revision as of 19:05, 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
  12. Working with Strings and Text in PHP