Tutorial search

PHP Tutorials
Tutorials
Stuff
Affiliates

PHP Basics Tutorials


We hope that you will enjoy our PHP Basics tutorials. Feel free to contact us if you would like to be a tutorial hero and contribute your own PHP Basics tutorials to our site. Thank you !

Sort by:
Bare Basics - Arrays
Bare Basics - Arrays
One thing you can"™t escape in your PHP journey is arrays, at one point or another they"™ll crop up in your simple script, your project or anything in between. Arrays are relatively to simple to use, but can be a bit daunting for people new to programming or just PHP.
Category: PHP tutorials > Basics - Difficulty:
Getting to Grips With Functions
Getting to Grips With Functions
More often than not, new developers tend to repeat a lot of code in their websites and web apps instead of recycling them. Functions give you the freedom to alter code all throughout your website or web app in one place, both convenient and it helps avoid errors! We"™ll look at why functions should be used, where they should be used, how they should be used and some special techniques you should be using.
Category: PHP tutorials > Basics - Difficulty:
Create A Custom Wordpress Page with Different Template
Create A Custom Wordpress Page with Different Template
Recently I needed to create a page in Wordpress that didn't have the sidebar on it. Took me a wile to find the solution, but the one I found works like a charm. Takes a bit of programming knowledge, but not too bad.
Category: PHP tutorials > Basics - Difficulty:
PHP And Ajax
PHP And Ajax
Simple guide to doing text completion in a form, using Ajax and PHP
Category: PHP tutorials > Basics - Difficulty:
Using PHP to add Gravatar support to your web sites
Using PHP to add Gravatar support to your web sites
Learn how to add Gravatar (global avatar) support to your web sites.
Category: PHP tutorials > Basics - Difficulty:
POSIX Regular Expressions in PHP
POSIX Regular Expressions in PHP
What are regular expressions, how to use them and their support in PHP are main streams of this tutorial.
Category: PHP tutorials > Basics - Difficulty:
Learn PHP from Scratch - Part 2
Learn PHP from Scratch - Part 2
Learn PHP from Scratch - Part 2
Category: PHP tutorials > Basics - Difficulty:
Arrays in PHP
Arrays in PHP
In computer science an array is a data structure consisting of a group of elements that are accessed by indexing. In most programming languages each element has the same data type, in PHP however each element can be a different data type. Each element of an array has a unique identifying index number. Changes made to one element of an array do not affect the other elements.
Category: PHP tutorials > Basics - Difficulty:
Using PHP include() – Make things easy for yourself!
Using PHP include() – Make things easy for yourself!
Future-proof your site by using the PHP include statement - allowing you to change your site design quickly and easily.
Category: PHP tutorials > Basics - Difficulty:
Functions in PHP
Functions in PHP
Functions are arguably one of the most useful features of PHP. They allow a programmer to encapsulate sections of code within a structure which can then be executed from anywhere else in the program flow. Functions are instantiated by use of the function keyword, followed by the user-defined function name including a list of parameters between the paretheses
Category: PHP tutorials > Basics - Difficulty:
Conditional Statements in PHP
Conditional Statements in PHP
Conditional statements are used in PHP (and in any other programming language) when the programmer wishes to place a branch in the code, where a specific result will occur if, and only if, a set of conditions is matched
Category: PHP tutorials > Basics - Difficulty:
Loops in PHP : While and For
Loops in PHP : While and For
Loops in PHP are very useful when you need to perform repetitions of the same code over and over again, or when you need to ensure that you iterate through all possible values of an array, for example. They come in a few different flavours, the most common being “for” loops and “while” loops
Category: PHP tutorials > Basics - Difficulty:
 Variables in PHP
Variables in PHP
Variables are probably one of the most commonly used code constructs you’ll come across while programming in PHP
Category: PHP tutorials > Basics - Difficulty:
Arrays in PHP
Arrays in PHP
There are times in programming where you need to keep track of many variables at once. Maybe the current time of day, the number of items in a package or the name of a certain product. These variables may all be very similar too though, you might, for example, need to keep track of the names of all employees in a company, or the number of items inside each of a large number of packages. Arrays can be used to keep track of these multiple values from within one variable.
Category: PHP tutorials > Basics - Difficulty:
Create your own Image Uploader in PHP
Create your own Image Uploader in PHP
So you want to create your own image uploader?? Maybe for a image hosting website? If you are unsure what I"™m on about then it"™s simple"¦
Category: PHP tutorials > Basics - Difficulty:
Total Tutorials in Category: 290