Language
Platform
Any
License
Any
WordPress is a Web publishing platform written in PHP, using MySQL for storage. It provides extensibility by building plug-ins that add filters and actions. The Eclipse PHP Development Tools (PDT) V2...
Eclipse presents a wealth of capabilities for building tools for compiled languages like C and the Java programming language, but provides little support for scripting languages like Perl, Python,...
Part-3 of the "Web development with Eclipse Europa" series introduces the RDT and RadRails Eclipse plug-ins and shows you how to get these plug-ins and start using them. You will learn how to use...
In Part-2 of the "Web development with Eclipse Europa" series you'll see how easy it is to develop PHP applications using a different set of Eclipse plug-ins, collectively known as the PHP...
Part-1 shows you how to use Eclipse to connect to a database, create tables, and create test data in our database. This three-part "Web development with Eclipse Europa" series shows you how to use...
The PHP Development Tools (PDT) plug-in, when installed with Eclipse Europa, gives you that ability to quickly write and debug PHP scripts and pages. PDT supports two debugging tools: XDebug and the...
If your PHP application is plodding, use a profiler to target and measure where time is being spent or memory is being used. You can target the statement, loop, function, class, or library that's...
CAPTCHA is a simple test to determine if a user is a computer or a human. It is used to prevent spam abuse on the websites. The goal of this tutorial is to demonstrate how to make your own simple...
VS.PHP is a strong tool and an extraordinarily cost-effective way to program in PHP, particularly for jack-of-all-trades programmers who already use Visual Studio.
To make sure the security in your PHP scripts are okay, you have to start with the basics: filter input, and escape output. If you haven't got that working properly, your scripts will always be open...
Make a geocoding database available to the world through a Perl-driven web service. Then, to demonstrate the service, a PHP web services client talks to this Perl service to retrieve coordinates for...
There are better ways to hunt down logical errors in your code. Tools (like Zend’s debugger and profiler) aren’t an option for everybody, so I’d like to focus on a more generalized practice that can...
To demonstrate how just a little dash of PHP can make life easier for developers, I’ll take you through the steps of creating a very basic Web page with some dynamic content. You’ll then be able to...
JavaServer Pages (JSP) is a server-side technology that allows developers to create Web-based applications that can make use of components that are developed in the Java programming language,...
A common beginner (and not so beginner) mistake is to develop an application without any consideration of the future. It's not impossible that one day the database you use today may be inappropriate,...
One of the greatest advantages when using PHP is obviously speed. PHP4 is in general fast enough for dynamic web content generation, and in most cases you can't even think of anything faster than it....
As most of us already know, PHP is the best language for developing dynamic web pages available today. Not many people are aware that it can be used as a shell scripting language as well. While PHP...
The configuration system that PHP uses for installation is one of those nice, simple things in life that makes it rosy. At first it might seem a little confusing, but it's really very easy. So let's...