Mark’s Site

Pensieve for coding and golf :-)

Archives for the ‘1.2. Code Basics’ Category

All About Commenting

By admin • May 2nd, 2008 • Category: 1.2. Code Basics

It can be confusing when you start developing in a new language to know about the rules for commenting.



Understanding Errors

By admin • Apr 17th, 2008 • Category: 1.2. Code Basics

You’re a beginner to PHP and are experiencing errors when you run your code. You need to understand what the errors mean in order to fix them, this article will teach you what you need to know about errors.



All About Variables

By admin • Apr 16th, 2008 • Category: 1.2. Code Basics

Variables are your lifeblood when it comes to programming. They are something you will quickly need to get your head around in order to continue programming. This article will inform you all about variables in PHP.



All About Functions

By admin • Apr 16th, 2008 • Category: 1.2. Code Basics

Functions are simply a way of grouping code that performs to some specific purpose. This article will tell you all about functions in PHP.



All About Conditions

By admin • Apr 16th, 2008 • Category: 1.2. Code Basics

All of the conditions of programming in PHP that I find I use on a daily basis, including examples. PHP has more available, but I find these are the most useful to beginners, without giving them information overload :-)



All About Includes

By admin • Apr 11th, 2008 • Category: 1.2. Code Basics

Including configuration data, functions, and other important information of your project is a great way to cut down on repeating code. This article explains the basics of includes in PHP.