Advertisment
We have been displaying information as we have progress through these tutorials, now we are going to take a step back and look in some detail about...
The Variable Naming standard you choose, can be anything you want, bearing in mind that different languages have restrictions on what can be used...
This is a tutorial on Mysql Database Connecting, Inserting & Showing data.
Learn how to create multidimensional arrays in PHP, we will be creating a form, and another page to handle the form to demonstrate multidimensional...
After integer.. maybe just after integer, strings are possibly the most important variable types in programming. Storing a bunch (series) of...
$index++; // Post-increment, Give the value of index, then increments index by one ++$index; // Pre-increment, increments index by one, then...
Arrays An array is a data structure that stores one or more values in a single value. For experienced programmers it is important to note that...
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...
An easy to follow tutorial. Although using PHP, the most popular web programming language, it focus on web concepts in instead of on the language...
Learn how to use the PEAR HTML_Template_IT Package to create a templating system for your website using PHP and HTML.
In this code sample we will converting all applicable characters to HTML entities using htmlentities(). Using 'htmlentities' all...
Learn how php sessions work
A collection of 19 tips on creating your own PHP functions. Clear answers are provided with tutorial exercises on defining functions, defining...
The topics covered in this tutorial include: PHP basics, including script structure, variables, supported types, constants, expressions, and type...
In this tutorial we will help you understand how to use php.
We will be looking into what arrays are and how to make and use them.
Today you will be learning how to create you're own function.
You will be learning the str_replace function.
If you are beginner to intermediate in PHP then this tutorial is for you, this tutorial discusses some of the basics of PHP in detail.
A simple tutorial on how to use arrays in PHP.