|
Arrays and PHP: A Primer
|
Other links at PHP > Tutorials > Development |
| 1. |
Object-Oriented Programming with PHP
|
|
|
Couple Object-Oriented Programming with PHP and youve got features worth inheriting. From foundations to class to inheritance, this article makes understanding objects within PHP easy--and practical.
|
| 2. |
Opening a Few Windows with PHP
|
|
|
A discussion on PHP development on Windows platform. It covers installation, how to enable functionality through extensions (DLLs), sending mail, Filesystem functions, and using COM.
|
| 3. |
Top 21 PHP Programming Mistakes - Part 2: Seven Serious Mistakes
|
|
|
In this second part of the series, it describes 7 common mistakes in PHP programming that will lead to drastically slower run times and less secure scripts, in addition to less maintainable code. Topics covered: Not Following Basic Naming Conventions (Variable Naming, Function Naming), Databases & SQL (Misapplying database functions, Misusing SQL: Not Fetching What You Need, Misusing SQL: Not Fetching What You Need), Lack of Error Checking, Overusing OO, Misusing Regular Expressions, Programming PHP Like It Was Some Other Language, and Not Being Security Conscious (System Call Security, Checking an e-mail address).
|
| 4. |
PROGRAMMING WEB WIDGETS WITH PHP
|
|
|
This article describes an approach to programming web user interface components (widgets) using object-oriented programming techniques and providing a way to easily manipulate the overall design of a site with WYSIWYG HTML editors lime Macromedia Dreamweaver.
|
| 5. |
Creating and using a timing class Tutorial
|
|
|
The purpose of this tutorial is to talk about two seperate concepts; profiling and object oriented programming (OOP). In this tutorial well create a simple class to allow you to create one or more timers. You can then use these timers to show you how long a script or function takes to run, which can help you determine what portions of your script are eating up the most processing time. This is sometimes referred to as profiling. You can also use timer objects to provide generic timer display in your scripts.
|
|
|