It's painful, but possible. With PHP and the PHP-GTK module, you can build your own gui executable files. This is a guide that directs to the right GTK tutorials and functioning PHP compiling software. Includes code for a working model.
Version: n/a Platform(s): windows Updated: Wed Jan 19 2005
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 FEED'S for 10 latest code submissions
and 10 latest code updates.
Membership is FREE
Version: 1.0 Platform(s): linux, windows, freebsd, osx, sun Updated: Tue Oct 26 2004
Caching output in PHP can reduce server load and speed up your site. This tutorial explains how to alter your site to save your server from processing scripts and querying databases more than is needed.
Version: n/a Platform(s): n/a Updated: Thu Jun 10 2004
Alternating row colors is a very good way to make big tables more ergonomic and esthetic. Script and explanation here. Also explains the modulus operator.
Version: n/a Platform(s): n/a Updated: Tue Jun 1 2004
The purpose of this tutorial is to talk about two seperate concepts; profiling and object oriented programming (OOP). In this tutorial we'll 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.
Version: 1.0 Platform(s): All Updated: Sat Jan 3 2004
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 utilize PCRE. In this 'introduction to regular expressions' the author will assume no prior knowledge of regex, and will try to give you the most thorough explanation of this powerful tool as possible.
Version: n/a Platform(s): n/a Updated: Thu Feb 27 2003
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, you can also compress data before its sent to the browser.
Version: n/a Platform(s): n/a Updated: Thu Feb 27 2003
This from IBM developerWorks, targets the PHP developer who already understands PHP, but either wants to write more efficient PHP code or wants to improve the performance of existing PHP applications. Requires registration to read the article on the IBM developerWorks site.
Version: n/a Platform(s): n/a Updated: Wed Feb 12 2003
Templates provide a simple means to seperate server side code from client side code in our scripts. This article looks at when template systems are useful, their shortcomings and why template engines are a bad idea.
Version: n/a Platform(s): n/a Updated: Wed Dec 4 2002
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 look at how PHP code is represented in UML terms, via use of the the UML class diagram.
Version: n/a Platform(s): n/a Updated: Mon Dec 2 2002
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 easier. Inside, you will find plenty of examples and techniques to learn, with lots of sample code. This first article gives a higher perspective for designing and writing bug-free, maintainable code for medium- to large-scale Web applications.
The series Develop rock-solid code in PHP is about solving practical, real-life problems in medium- to large-scale applications. This article discusses how to use variables effectively. It also shows how to make script configuration easy by constructing a configuration file parser using variable variable names in PHP.
There's a lot of PHP code available for free on the net but also not all of it can run on your system as it is. This article shows you how to distribute a setup required by your program to run.
Version: n/a Platform(s): n/a Updated: Mon Aug 26 2002
A very popular technique to better display content on your website utilizing MySQL and PHP to alternate your row colors of the tables your content is listed in.
This tutorial is a follow-on to the Introduction to If Else Statements - Part 1. Here we show you how to exercise your mind utilizing If Else Statements to build an online 5 star rating system that allows users to vote on your content.
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.