The Basics of Working With PHP Arrays

An array in PHP is simply a variable that is used to store data. Most of the time this data has some sort of common denominator. You will see a lot of code storing things like table row data in arrays. Using arrays also allows you do do some neat things that would be other [...]

June 4th, 2009 by Allen Sanford 

Adding a Comment to a PHP Code Page

Comments are actually the most important thing any coder can learn to properly use. There are actually a few different styles to use when commenting code for PHP. In this tutorial I am mostly going to let the code do the speaking … so to speak …?! Any way. Let me get a few important [...]

June 4th, 2009 by Allen Sanford 

Inserting PHP Code Into a Web Page

Most beginners in PHP are under the assumption that only PHP code can be placed in .php files. This is an incorrect assumption. Today I am going to show how to insert PHP code into HTML markup and place all of it in a .php file. Inserting PHP code into HTML markup allows us to [...]

June 3rd, 2009 by Allen Sanford 

PHP – A Simple Start

First I would like to say that this article makes the assumption you already have a working PHP installation. If not go here first. Alrighty then , now most tutorials will have you do the classic “Hello World!” as is customary in almost every programming language tutorial in existence, so I shall not disappoint. In [...]

May 19th, 2009 by Allen Sanford 

HTML and CSS conditional statements

Finding a good tutorial on how to use HTML and CSS conditionals is tough. There are plenty out there but none of them really go in depth on the subject. I have put together what I hope is a complete or almost complete and easy to under stand How-to on the subject of HTML and CSS conditionals.

June 13th, 2008 by Allen Sanford