Introduction to SQLite PHP / Databases
Many people have heard of SQLite but not many people have used it in their PHP applications. Most PHP applications make use of the MySQL database engine to store information however this is not always needed for small amounts of data. In these cases, web applications often store their data in a "flat file" format, often just a plain text file or an XML file. Both of these methods have their downsides.
Introduction to Debugging and Error Checking PHP / Debugging and Error Handling
Debugging essentially means to track down an error in your code. Found a "bug" in your code? Then you need to "de-bug" it. This article will introduce you to some basic concepts such as error checking and built-in functions like var_dump() that will aid you in tracking down errors in your PHP applications.
Using Type Juggling/Type Casting to Modify Data Types PHP / Getting Started
We're going to be dealing with type juggling in this article. This is the process of instructing PHP how to handle the value after the type juggling. Type juggling can do absolutely all sorts, from converting integers to floats, arrays to objects, and even strings to binary as of PHP 5.2.1. It can also save you calling various functions and thus making your script quicker.
Using the Internal Array Pointers to Access Elements in Arrays PHP / Getting Started
The native array pointer functions in PHP allow you to traverse an array without actually referring to specific array elements. They can be particularly useful if you're using an associative array and wish to use the first element in the array. An internal array pointer, in PHP, is fundamentally an invisible pointer that points to a particular record in an array.
Advance Pagination Class PHP / Object Oriented
This class will display the results of any MySQL table including all the fields and rows. It will work out how many fields there are and display the results accordingly
OOP Method Chaining PHP / Object Oriented
In this article, I will be talking about a useful new feature introduced in PHP5 as part of the OOP improvements over PHP4.