PHP Loop Structures PHP / Getting Started
Being able to use any programming language, you need to have reaction to input. With PHP for instance, there are many ways to automate actions. Here are some of the control or loop structures available in PHP.
PHP, The Nitty Gritty: Lesson 1 PHP / Getting Started
This is an introductory article on PHP programming. Some of main topics covered include: Variables, Strings, Arrays, Comparison Operators, and Control Structures.
The if statement PHP / Getting Started
Conditional structures are used to control which statements get executed. They are composed of three fundamental elements: if statements, elseif statements and else statements.
The FOR loop PHP / Getting Started
The FOR loop is one of the basic looping structures in most modern programming languages. Like the while loop, for loops execute a given code block until a certain condition is met.
PHP attributes PHP / Object Oriented
A common way of accessing structures or objects uniformly is to use attributes access (also known as properties or metadata). Attributes allows code to read and write single values from an object in one general way.
Conditional Statements PHP / General Development
Sometimes when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this. Conditional statements are the set of commands used to perform different actions based on different conditions. In this tutorial we will look at two structures: if...else and switch statements.
PHP Email Form Easy PHP / Emailing
Now you can send emails from your web sites with full control over design style and functionality. PHP is the way to go for online email form.
How to use the LoadVars Class PHP / Object Oriented
The LoadVars class allows developers to have a better control of the external loaded data. There are many reason to use the LoadVars class intead of the old deprecated loadvariables and loadvariablesNum.
Error Handling PHP / File Operations
Every programmer wants to practice effective error handling. Learn how to control the size and other aspects of file uploading on your server by error handling.
Calculator Building an Apache-like Access Control List (ACL) PHP / Security
Constructing an Apache-like, in fact we're going to be emulating the Apache ACL in its entirety. Although you could quite easily use Apache, this allows you to see how it's all done and even extend onto it to allow temporary bans which expire after a certain amount of time - if you were that way inclined.
Creating a file based AD rotator script PHP / Ad Management
Create a simple AD rotator script without using database. The script can display both text and image ads and you can control the number of ads to be displayed at once.
PHP in the Command Line (Shell) PHP / Getting Started
There's a single line you can add to your web host's control panel that will automatically archive your content. A "shell" in the computer world is a place where you enter commands and run files by name rather than clicking around different windows.