Bookmark and Share
ASP
Perl
PHP
CSS
HTML
Javascript
XML
C
Visual Basic
Access
MySQL
SQL
MsSQL
Java
jQuery

PHP Subcategories

Beginners | Date and Time | Database | Content Management Systems | Cookies and Sessions | Email | Image Manipulation | Forms | Security | Object Oriented Programming | Web Scraping | String Manipulation | RSS | XML | Other | Mobile | PEAR | Flash | Math | Advanced | Files | Ecommerce | Arrays |

Using PHP Operators
PHP | Views: 2 |
To effectively use a programming language you must perform operations. In Liz Fulghrm's continuing series on programming PHP, she presents coverage of this language's operators

Learning PHP: The What's and the Why's
PHP | Views: 2 |
Tired of being limited by client-side Web development? Liz Fulghum begins a series of articles to teach you PHP. In this first article in the series, learn what PHP is and why you'd want to use it

Learning PHP: Storing Basic Information
PHP | Views: 0 |
Basic information is stored using variables and data types. In this continuing tutorial, the focus is on teaching you the basic structure of PHP and how it handles variables and data types

Learning PHP: Installing and Configuring
PHP | Views: 0 |
Before you can begin programming with PHP, you must first install and configure it on your system. In this second article of the Learning PHP series, Liz Fulghum teaches you how

Introduction to Functions: Part 2
PHP | Views: 0 |
John Coggeshall tackles some of the more difficult topics dealing with functions, including variable scope, static variables, and return values

Installing PHP under BadBlue Web Server
PHP | Views: 0 |
Your production machine might have PHP installed on an Apache server in a Linux environment, but most of the people (like me) will develop and test their code on a Windows machine before they move their work on to the production machine. Working on this

Installing PHP on a Windows System
PHP | Views: 0 |
Darrell Brogdon explains the steps required to install PHP on a Windows system

How to Install and Configure PHP4 and the Zend Optimizer on Windows
PHP | Views: 0 |
There's been tremendous interest in the PHP articles on thesitewizard.com, and one question that I seem to be getting more often these days is whether the procedure for installing PHP4 is similar to that which I outlined in my article on how to install a..

How do I make a PHP page?
PHP | Views: 0 |
Making a PHP enabled web page is as easy as opening a new file in your favorite HTML or text editor. The editor can be as simple as Notepad or as complex as HomeSite. The choice is yours

Getting started with php and InterBase
PHP | Views: 0 |
In this article, I will talk a little about installing and using InterBase with php4. It includes: some words about Interbase, getting and installing InterBase, compiling and configuring php with InterBase support, creating an example database, and some ..

Functions in PHP
PHP | Views: 1 |
Copying the same code you need to every location you need it in is neither practical nor efficient. In the latest installment for learning PHP, you learn how to build functions as well as how to use the built-in functions provided

Control Structures Revisited
PHP | Views: 0 |
A look at two new variations of the if(), while(), and for() statements as well as an introduction to a completely new structure, switch().

An Introduction to Functions
PHP | Views: 1 |
Functions allow you to re-use code to repeatedly perform a procedure. John Coggeshall introduces PHP functions

Alternating row colors tutorial
PHP | Views: 0 |
Sometimes, when we work with tables, we probably want to change the color for every row (<td>). There are probably many ways to do this, but I will describe the most simple of it - %

Adding PHP to Apache on Linux
PHP | Views: 0 |
In the last year, the PHP scripting language has become one of the most essential tools for building content-rich Web sites on the Internet. In his debut column, Apache pioneer Ken Coar explains how to integrate PHP with an Apache Web server on a Linux s..

2 Quick PHP Tips
PHP | Views: 3 |
Are you a sloppy coder? Do you unwittingly reduce the performance of your own code? Clean up your act with these two great PHP tips - David shows us how