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:
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:
Server Side Includes (SSIs)
Server Side Includes (SSIs)
This tutorial will show you how to include files into your page. This basically adds the easy-of-editing of CSS to your HTML. This will allow you to create a framework for your site that allows you to have one navigation file to edit, and it will change on every page the navigation is displayed on.
Category: PHP tutorials > Basics - Difficulty:
str_ functions
str_ functions
Learn how to manipulate strings with the str_ functions.
Category: PHP tutorials > Basics - Difficulty:
Total Tutorials in Category: 288