Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 100: Line 100:
 
#* [[Working with Strings and Text in PHP|Extracting and Replacing Substrings in PHP]]
 
#* [[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|Replacing All Instances of a Word in a PHP String]]
 +
# [[PHP, Filesystems and File I/O]]
 +
#* [[PHP, Filesystems and File I/O|Opening and Creating Files in PHP]]
 +
#* [[PHP, Filesystems and File I/O|Closing Files in PHP]]
 +
#* [[PHP, Filesystems and File I/O|Writing to a File using PHP]]
 +
#* [[PHP, Filesystems and File I/O|Reading From a File using PHP]]
 +
#* [[PHP, Filesystems and File I/O|Checking Whether a File Exists]]
 +
#* [[PHP, Filesystems and File I/O|Moving, Copying and Deleting Files with PHP]]
 +
#* [[PHP, Filesystems and File I/O|Accessing File Attributes]]
 +
#* [[PHP, Filesystems and File I/O|PHP Output Buffering]]
  
* [[PHP, Filesystems and File I/O]]
 
 
* [[Working with Directories in PHP]]
 
* [[Working with Directories in PHP]]
 
* [[An Overview of HTML Forms]]
 
* [[An Overview of HTML Forms]]

Revision as of 19:19, 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
  13. PHP, Filesystems and File I/O