Development
Results 1 - 20 of 104
Storing multidimensional arrays in a file
In this tutorial I will show you how to store a multidimensional array in a file and how to retrieve these data. With this method you can imitate a very basic database functionality.
Create syntax highlighted php code as html text
This tutorial teaches you how to convert an existing php code to a syntax colored html text.
5 Tips for Writing Cleaner PHP Code
There are many benefits to writing clean code for any project, no matter how small. The importance of clean code becomes most apparent when you need to find an error, especially a syntax error. In the end, cleaner code means less time reading and more...
(show more)
Maintain a Single Database Object in PHP 5 Using the Singleton Pattern
When creating a PHP application, it is usually necessary to connect to a database to perform certain tasks. In some cases you only want to open a connection when necessary, but limit it to a single connection. This way you don't waste resources on...
(show more)
Snippet: Autoloading Objects (PHP 5)
When writing object oriented PHP code, keeping track of required classes can be a problem. This tutorial explains how to use the autoload function to let PHP handle the dependencies automatically.
Limit Characters From Your Text
This php script helps you limit displaying characters form you message
Macronimous - Codeigniter for PHP application development
With many software frameworks available online nowadays, with many pros and cons on their side, it has become very important to check out complete details of these frameworks before applying them. Amongst the various kinds of software frameworks, the PHP...
(show more)
Macronimous - Writing clean, secure and easy to maintain PHP code
Any code when written in a clean, easy to understand and formatted way is readily accepted and
acclaimed by one and all. It is essential that the codes we write should be able to be understood by all, because the same programmers need not necessarily...
(show more)
Debugging PHP with Xdebug
The Xdebug is the extension for PHP that helps debugging PHP scripts by providing a lot of valuable debug information. Using the Xdebug you can debug your scripts in the Notepad++ and other PHP IDEs.
Ignoring CakePHP's tmp directory with Subversion
Ignoring CakePHP's tmp directory with Subversion
Operators In Php
Learn PHP & MySQL on Jooria.com with Profesor Now We Will Know Operators In Php
Coding With Style
An article from a series of articles that I'm writing. This one is about the importance of proper coding style.
PHP Manual
Documentation manual for PHP. A must read for all PHP programmers and developers. This is a FREE service.
Accessing the Command Line From PHP
This tutorial will explain the different methods of accessing the system command line from a PHP script. Being able to run external programs can come in handy, and fortunately there are multiple functions that will do this. We will explain the...
(show more)
Learn PHP With JWRmedia's FREE Online PHP Lessons
JWRmedia's free online PHP lessons explains in detail all the popular functions, statements and operators so that you can easily and quickly learn PHP.
Front Controller/Modrewrite Tutorial
The main point of this tutorial is to highlight the magic of the modrewrite module and show how you can use it to make a Dreamweaver safe development environment. What do I mean by Dreamweaver safe? Well If we assume most professional designers like to...
(show more)
TechCuBeTalk-Validating correct email id format using PHP
This article shows how to use regular expression and PHP to validate correct email id format. Sample code snippet is attched.
How to Develop a Website like Myspace, Youtube or Facebook
How to Develop a Website like Myspace, Youtube or Facebook, Start with a base script you can get the source code too then develop your functions.
Social Groupie is like Facebook, Datecomm is like myspace, VideosBroadcastYourself is like Youtube, created...
(show more)
Plugins - Do It Yourself
In this article, you will learn to write a dynamic plugin engine for your own project.
Lazy loading with autoload and PHP!
Are you ended up with many PHP files and having hard managing them all? You don't want to include them all in your scripts... but your not sure what you will need! This could well answer your problems ;)
