SHOWING LATEST TUTORIALS
Sign-Up for free membership account and submit your SourceCode. You will get your own CodeLibrary "corner" and can modify your submissions at any time, you have even your "private" section. Will be added RSS2.0 FEEDS for 10 latest code submissions and 10.
Article about managing teams and working with large(ish) projects. Includes sections on CVS, communication, standards, and more.
Anyone that has to do a large sum of unusual data manipulation will always choose to use regular expressions ('regex') over native functions because of one thing: power. In PHP the 'ereg_' functions are what utilize ERE POSIX, and the 'preg_' functions ut
If else statements have been proven to be some of the most valuable functions in PHP. This tutorial is a good simple introduction that spells it all out for you.
For many years, arrays have been used to logically store and sequence data. They have also been the point of confusion for many developers. This article will talk about the structure of arrays and how you can create and manipulate arrays with the PHP scri
UML (Unified Modelling Language) is a mechanism for representing software in the form of diagrams. Essentially it allows to design our applications by drawing, and if the right tools existed, even generate code from the diagrams. In this article we"ll loo
Control structures are some of the coolest things in PHP. They take a lot of the work off of your shoulders and place the burden on the language itself. They are especially useful for making sites where you need to make a page do something over and over a
This 4-page tutorial guides you through step-by-step how to pass arrays and using checkboxes/select boxes in PHP.
This 4-page article will explain how to use PHP output controlling functions to make your pages load faster.
If you want to have more control over your scripts, the output buffering functions are the way to go. Anything from error handling to multiple header() commands in a single document. Not only does output buffering offer a powerful API for handling content
Unlike PHP 3, PHP 4.0 has built-in capabilities to handle session management. The session management functionality in PHP 4.0 is easy to use, powerful and open for custom modifications. Creating sessions allows you to keep track of the actions of a partic
Learn how to do all that index.php?page=Tutorials kinda stuff.
I will show you easely and quickly How to make index.php?p=page kind of page or website
This documents goal is to present the basic tNG features. We"ll create a simple site that will be used to manage a companys departments and employees. Users will be able to display the existing departments, to add a new department, to edit or to delete
In this last part of the "Top 21 PHP Programming Mistakes" series, the discussion involves what the author calls 7 "deadly" mistakes. These are conceptual mistakes such as not allotting enough time for a project, not having a thorough code review, etc.
This tutorial teaches you how to write and use classes, to make your PHP code more flexible and easier to manage. The tutorial guides you through the construction of a simple, security-related class that performs some basic security functions for a web si
This article describes how to easily create a PHP extension with C or C++. Examples of bundled PHP extensions include the MySQL extension or the Sablotron XSL extension. These allow you to provide features to PHP script authors by letting you create funct
The Develop rock-solid code in PHP series is about solving practical real-life problems in medium- to large-scale applications. With a sharp focus on new features available in PHP 4, the articles shed light on numerous tips and tricks that make life easie
A large portion of Web programming requires strings to be handled and generated, so knowing how to use and handle strings properly is extremely important for PHP programmers. This tutorial starts with the simple constructs used to create strings and moves
This page shows a few tips to make your PHP code run faster.