Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 145: Line 145:
 
#* [[Understanding PHP Sessions|Writing PHP Session Data to a File]]
 
#* [[Understanding PHP Sessions|Writing PHP Session Data to a File]]
 
#* [[Understanding PHP Sessions|Reading a Saved PHP Session]]
 
#* [[Understanding PHP Sessions|Reading a Saved PHP Session]]
 +
# [[PHP Object Oriented Programming]]
 +
#* What is an Object?
 +
#* What is a Class?
 +
#* How is an Object Created from a Class?
 +
#* What is sub-classing?
 +
#* [[PHP Object Oriented Programming|Defining a PHP Class]]
 +
#* [[PHP Object Oriented Programming|PHP Class Constructors and Destructors]]
 +
#* [[PHP Object Oriented Programming|Creating Members in a PHP Class]]
 +
#* [[PHP Object Oriented Programming|Defining and Calling Methods]]
 +
#* [[PHP Object Oriented Programming|Subclassing in PHP]]
 +
#* [[PHP Object Oriented Programming|PHP Object Serialization]]
 +
#* [[PHP Object Oriented Programming|Getting Information about a PHP Object]]
 +
  
* [[PHP Object Oriented Programming]]
 
 
* [[Using PHP with MySQL]]
 
* [[Using PHP with MySQL]]
 
* [[PHP and SQLite]]
 
* [[PHP and SQLite]]

Revision as of 20:12, 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
  14. Working with Directories in PHP
  15. An Overview of HTML Forms
  16. PHP and HTML Forms
  17. PHP and Cookies - Creating, Reading and Writing
  18. Understanding PHP Sessions
  19. PHP Object Oriented Programming