Most Popular Scripts | PHP | Tutorials & Tips
Output While Script is Still Running
posted bydtang4inMiscellaneous
Do you have a script that takes a while to process? Wanna start outputting before the entire script finishes processing? Learn how to use PHP output buffering functions and have them actually work! Don't make your visitors wait for a long script to process.
Reviews0
PriceFree
Views1486
Random Quote
posted bychris_gillinRandomizing
This code enables you to display a random quote on yout website, from a list you define. All you need is a a single php file and your webpage.
Reviews0
PriceFree
Views1761
Dealing with special characters
posted bytrancedminDatabase-Related
This tutorial will teach you how to deal with special characters like HTML tags, white space etc. from a user submitted form and database output.
Reviews0
PriceFree
Views1889
Page Load Time Walkthrough
posted bychris_gillinDate & Time
This tutorial will show you how to add your page load time to your PHP pages. It includes code that is able to be copy and pasted for easy assembly.
Reviews0
PriceFree
Views3277
How to let your customers or visitors easily put files on your server
posted bychangdonginFile Manipulation
This tutorial tell you how to create a file upload script on your server using php, javascript. The code is available for free.
Reviews0
PriceFree
Views2093
Dynamic CSS with PHP
posted bymattinMiscellaneous
Need to generate style sheets dynamically with PHP to keep presentaion logic together or create environment aware style sheets with PHP and JavaScript? This tutorial shows you how!
Reviews0
PriceFree
Views2465
Modifying TIMESTAMP
posted byMajd-GFXinMiscellaneous
Learn how to turn 050309112684 into 09/03/05 11:26:48 using the substr() function in php.
Reviews0
PriceFree
Views1199
Generate HTML Files
posted bydtang4inMiscellaneous
Make all your webpages search engine friendly by converting them to *.htm files. (Requires mod_rewrite on your server.) Touches upon regular expressions.
Reviews0
PriceFree
Views1623
PHP Classes
posted byskyhawk133inDevelopment
Doing it with class in PHP. What is a data structure? What is a class? How are classes used in PHP? All these questions and more are answered in this tutorial.
Reviews0
PriceFree
Views2451
Introduction to Sessions
posted bydtang4inIntroduction to PHP
Learn the fundamentals of session variables, and some popular uses for them. Also, touches upon random password generation.
Reviews0
PriceFree
Views1210
Building a Secure Contact Form
posted bypetesmcinEmail Systems
A contact form or an email form is often a critical part of a website, in allowing users to contact you regarding one or more issues. This article aims to help you produce a secure contact form, and at the same time, try to reduce the amount of spam you will receive from it.
Reviews0
PriceFree
Views2657
Build Standalone Applications
posted bydtang4inDevelopment
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.
Reviews0
PriceFree
Views1545
Server Side Includes
posted bypetesmcinIntroduction to PHP
Server side includes are frequently used to give your entire site the same look and feel, as well as allowing you to produce more modular code. Join Peter as he explains this, and shows you how!
Reviews0
PriceFree
Views1224
Redirecting Users
posted bypetesmcinIntroduction to PHP
Ever wanted to redirect users using PHP? Using HTTP headers? Conditionally? Peter explains all this and more, in order to help improve your site and coding.
Reviews0
PriceFree
Views1262
Unix man pages and resources
posted bypamphileinDevelopment
Over 150,000 pages of unix manual pages, and open source documentation in multiple languages + documentation on php, and python in multiple languages
Reviews0
PriceFree
Views835
Expandable menu with PHP 2
posted byAcecoolinLink Indexing
Allows you to make expandable menus with PHP.
This versions allows multiple menus to be opened / closed, click one menu to open - click another to open the other - click the first or the second to close it, you can open as many or as few as you like and are not forced to close it again. PAGE MUST BE RELOADED (PHP isnt Javascript).
Reviews0
PriceFree
Views2799
Alternating row colors
posted bybitzoneinDevelopment
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.
Reviews0
PriceFree
Views2257
TechiWarehouse PHP Tutorial
posted bytechiwarehouseinIntroduction to PHP
It covers all the basic in neat and clean manner. Its recommended for beginner and those that have just passed the beginners mark. Also good for those who want to brush up on the basics. Its intent was to make PHP welcoming for the beginners and not to make the whole intro sound too technical...
Reviews0
PriceFree
Views2338
Flip a Coin
posted bybillpfubarinRandomizing
Easily make a quick random choice between two options. This php script works by seeing if the current server time seconds is even or odd. The code snippet also extends the basic principle to let you flip a 3-sided coin (for choosing among 3 options). Use this for deciding banners, style sheets or any random choice between a very limited number of options.
Reviews0
PriceFree
Views2276
Count number of words in a text string
posted byDanBeeinMiscellaneous
A small code sample that will count through the sentences in a section of text and show how many words are contained within it.
Reviews0
PriceFree
Views3477