Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 128: Line 128:
 
#* [[PHP and HTML Forms|Processing Form Data Using PHP]]
 
#* [[PHP and HTML Forms|Processing Form Data Using PHP]]
 
#* [[PHP and HTML Forms|Processing Multiple Selections with PHP]]
 
#* [[PHP and HTML Forms|Processing Multiple Selections with PHP]]
 +
# [[PHP and Cookies - Creating, Reading and Writing]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|The Difference Between Cookies and PHP Sessions]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|The Structure of a Cookie]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Cookie Name / Value Pair]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Cookie Expiration Setting]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Cookie path Setting]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Cookie domain Setting]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Cookie Security Setting]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Creating a Cookie in PHP]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Reading a Cookie in PHP]]
 +
#* [[PHP and Cookies - Creating, Reading and Writing|Deleting a Cookie]]
 +
  
* [[PHP and Cookies - Creating, Reading and Writing]]
 
 
* [[Understanding PHP Sessions]]
 
* [[Understanding PHP Sessions]]
 
* [[PHP Object Oriented Programming]]
 
* [[PHP Object Oriented Programming]]
 
* [[Using PHP with MySQL]]
 
* [[Using PHP with MySQL]]
 
* [[PHP and SQLite]]
 
* [[PHP and SQLite]]

Revision as of 20:00, 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