Introduction to PHP
Results 1 - 20 of 142
PHP Object Oriented Programming
This tutorial covers Object Oriented Programming in PHP, or "classes". The tutorial covers what OOP is, why we would use it, and the way we use it in programming. It is a great tutorial for people who don't know what OOP is or why it is the preferred...
(show more)
PHP Tutorial [Part 1]
The introduction to PHP, it covers variables, if statements, and loops. It is very basic and is meant to introduce people to PHP who have had very little experience programming before.
Procedural vs. OOP Explained
Having trouble making the leap from procedural to object-oriented programming (OOP)? In this tutorial, I’ll explain the difference between the two styles of programming and give real-world examples on how and why you might use each. This tutorial...
(show more)
A series of PHP tutorials at My Computer Forum
An introduction to PHP programming through a series of online tutorials and web forums
Basic Overview of Loops in PHP
PHP comes with several control structures for creating loops. A loop is basically code that executes repeatedly for as long as it needs to. The control structures I'll discuss here are: while, do-while, for, foreach, break & continue. Each of these are...
(show more)
How To find roots of a number in PHP
A tutorial explaining how to find the mathematical roots of a number using PHP, for example square root, cube root, and higher roots.
How To Raise a Number to the Power of Another in PHP
This tutorial explains how to raise a number to the power of another using PHP using the pow function, for example 3^5.
Working with sessions in PHP
Working with sessions in PHP is very basic. You can pass values to session as key/value pairs. To store and receive data from sessions are very easy to use.
Working with Arrays in PHP
Arrays are a large collection of key/value pairs can stores multible variables in a single variable. Arrays are an ordered map which each key could be mapped to a value.
PHP Functions : urlencode()
You should encode string values while passing in an querystring. We use UrlEncode to Returns a string in which all non-alphanumeric characters except -_. have been replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+)...
(show more)
PHP Functions : array_fill
array_fill() fills an array with num entries of the value of the value parameter, keys starting at the start_index parameter. Note that num must be a number greater than zero, or PHP will throw a warning. .
PHP for dummy
PHP for dummy is a small tutorial for the absolute beginners how to start with PHP. This article covers more topic from installation to PHP basics.
PHP Strings Primer
In order to accomplish almost any programming task with PHP you'll be dealing with strings. To get the best out of PHP you must thoroughly understand the basic string functions available. In this tutorial we will lay down the foundations needed for a...
(show more)
Getting started with PHP Programming
This tutorial introduces some of the basic programming skills required if you are going to try and learn to use PHP. We will go over a little about what PHP is and talk about some of the basic styles of programming.
Please understand that this...
(show more)
Beginner PHP Tutorial: 25+ Lessons
Learn PHP through lessons and examples that are based on plausible real world applications. Also contained on tizag.com is a MySQL tutorial to aid you in your PHP/MySQL knowledge.
Introduction to PHP (by Stig Sæther Bakken)
This introductory guide covers a wide range of subjects on PHP programming. Some of main topics include: PHP history, PHP 4 Architecture, Language Syntax, Embedding PHP Code, Dynamic vs. Static Web pages, Variables, Arrays, Conditionals and Looping...
(show more)
Introductory Tutorial
This is a short introductory tutorial on PHP by the official PHP Web site. Explains what it is, what it looks like, what it can be used for. Also includes external links to other useful PHP-related sites.
Introduction to PHP - Getting Started
This article will show you the basics of a PHP program with several simple examples. It starts with HTML output and progressively builds up to variables, control structures, and looping.
Programming in PHP
The basics of programming explained with a clear focus of writing PHP pages. All the concepts needed to start writing effective PHP page explained!
SmartWebby's Introduction to PHP
PHP has become a more popular technology for web programming in the recent years due to its open source technology. This means that it is free to use and is compatible with almost any server, say Windows, Linux/Unix and Apache servers. Though it is...
(show more)
