Simple Pagination
How to make a simple pagination
PHP Refferal System
This is a basic referral system i typed up while in school. Easy to understand and follow.
PHP: Currently Active Users
In this tutorial I'll show you how to show the users that are logged on to your website like the one in codecall home page. Theres several techniques that you can use to do so, I choose to use this one for simplicity.
Ajax innerHTML
This tutorial continues my tutorial on innerHTML. In this tutorial, instead of using a function that will directly update the page, we are going to use ajax techniques to update the page. By using Ajax, you can call out to any piece of PHP (or other web language like ASP) code, rather than just be able to use javascript.
Easy to understand tutorial - GET and POST
In this tutorial, I will show you a simple example of using POST or GET in a form on a page to simply print “Hello, NAMEHERE”. Of course, POST and GET can be used for better things than this, like sending form information, but this will be enough so that I can show you the difference between them.
Sending emails with PHP & jQuery
A tutorial about sending emails and using AJAX for it.
Debugging MySQL issues in PHP
Possibly the most common issue users have with PHP is working with MySQL. When a query fails, many users don't know where to begin debugging. This guide outlines my debugging procedure.
PHP: Storing images in XML file - Part II - Displaying image
A tutorial on how to store images in XML files, for transfer and extraction.
PHP: Storing images in XML file - Part I - Uploading image
A tutorial on how to store images in XML files, for transfer and extraction.
Tutorial: PHP and Sorting
A tutorial on how to accomplish array sorting with PHP. PHP provides a large variety of functions for sorting arrays.
PHP Clock In/Out System
A Guide to creating a clock in/out system in PHP using MySQL
PHP Variables and Variable Functions
PHP variables start with a dollar sign. The first character must be a letter. Other than that, you can use any letter or number. The variable name can be as long and as short as you want.
Flash: Arrays and Vectors
Both arrays and vectors are structures that provide fast 0(1) access to any item in the array. They are direct-access containers. If you are familiar with arrays in other languages they are a bit different in ActionScript.
Flash: More Advanced Drawing
These methods require you to set all properties like coordinates and fill colors as we did before with graphics.beginFill. Then a single drawing method is used to process the data and draw the shape.
External Style Sheets With Flash
An external CSS file allows you to store your style definitions outside of the code. This has a few benefits.
Flash: Timers Part I
You create a new Timer by creating a new Timer object. The constructor takes two parameters: the number of milliseconds to run and the number of events to cause.
Flash: Basic Animation of Sprites
Since we can change the location of sprites by changing the x or y coordinates, animation is easy. All that we have to do is constantly change the x or y positions. To do this, we can use the ENTER_FRAME event. This event runs when we enter a frame. Once one frame ends, a new one begins and this event occurs again. Thus the method is called again. This allows for a method to animate a sprite.
Flash: Creating Buttons
Learn how to make a button that has a better interface using Flash/Action Script
Flash: Sprites and Sprite Groups
In this tutorial, we are going to make a few sprites on the stage. Then we are going to add some sprites on to the other sprites. This will get us a lot closer to being able to make some nifty games with depth.


