Difference between revisions of "PHP Essentials"

From Techotopia
Jump to: navigation, search
Line 162: Line 162:
 
#* [[Using PHP with MySQL|Creating a MySQL Database Table]]
 
#* [[Using PHP with MySQL|Creating a MySQL Database Table]]
 
#* [[Using PHP with MySQL|Inserting Data into a MySQL Database Table]]
 
#* [[Using PHP with MySQL|Inserting Data into a MySQL Database Table]]
#* [[Using PHP with MySQL|Connecting wiht PHP to a MySQL Server]]
+
#* [[Using PHP with MySQL|Connecting with PHP to a MySQL Server]]
 
#* [[Using PHP with MySQL|Selecting Records from a MySQL Database Using PHP]]
 
#* [[Using PHP with MySQL|Selecting Records from a MySQL Database Using PHP]]
 
#* [[Using PHP with MySQL|Adding Records to MySQL Database using PHP]]
 
#* [[Using PHP with MySQL|Adding Records to MySQL Database using PHP]]
Line 169: Line 169:
 
#* [[Using PHP with MySQL|Summary]]
 
#* [[Using PHP with MySQL|Summary]]
 
#[[PHP and SQLite]]
 
#[[PHP and SQLite]]
#* [[PHP and SQLite|Creating an SQLite Datbase with PHP]]
+
#* [[PHP and SQLite|Creating an SQLite Database with PHP]]
 
#* [[PHP and SQLite|Using PHP to Add Records to an SQLite Database]]
 
#* [[PHP and SQLite|Using PHP to Add Records to an SQLite Database]]
 
#* [[PHP and SQLite|Using PHP to Select Records from an SQLite Database]]
 
#* [[PHP and SQLite|Using PHP to Select Records from an SQLite Database]]
  
 
[[Category:Web Development]]
 
[[Category:Web Development]]

Revision as of 17:18, 13 June 2007

  1. About PHP Essentials
  2. The History of PHP
  3. An Overview of PHP
  4. Creating a Simple PHP Script
  5. Commenting PHP Code
  6. An Introduction to PHP Variables
  7. Understanding PHP Variable Types
  8. PHP Constants
  9. PHP Operators
  10. PHP Flow Control and Looping
  11. PHP Functions
  12. PHP Arrays
  13. Working with Strings and Text in PHP
  14. PHP, Filesystems and File I/O
  15. Working with Directories in PHP
  16. An Overview of HTML Forms
  17. PHP and HTML Forms
  18. PHP and Cookies - Creating, Reading and Writing
  19. Understanding PHP Sessions
  20. PHP Object Oriented Programming
  21. Using PHP with MySQL
  22. PHP and SQLite