Home

Working as a freelancer

Freelance work is not for everyone. Freelancing, or working for specific clients on specific projects, comes with distinct advantages and disadvantages. Sometimes people will not …

I almost fear putting this kind of post together as it’s bound to pull the fanatics (in the negative sense of the word) out of …

Step 1. The Setup
MySQL Table
Let’s begin by creating a database table.

CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`oauth_provider` varchar(10),
`oauth_uid` text,
`username` …

MVC for Beginners

Tutorial Details

Difficulty: Beginner
Architecture: MVC

Model-View-Controller (MVC) is probably one of the most quoted patterns …

Everything You Need to Get Started With CodeIgniter

Tutorial Details

Difficulty: Beginner
Technology: PHP

CodeIgniter is a web application framework for …

Working with Database
Create a database with a specified name if it does not exist in database server
CREATE DATABASE [IF NOT EXISTS] database_name
Use database or …

SQL UNION allows you to combine two or more result sets from select statements into a single result set. The usage of using SQL UNION …

jquery basics

jQuery: The Basics
This is a basic tutorial, designed to help you get started using jQuery. If you don’t have a test page setup yet, start …

mysql_fetch_array

mysql_fetch_array: Why Use It?
Do you know what is returned when you used the mysql_query function to query a MySQL database? It isn’t something you …

PHP String Manipulation

PHP – Strings
In the last lesson, PHP Echo, we used strings a bit, but didn’t talk about them in depth. Throughout your PHP …

Copyright © 2010 - Mark ( +27 79 9111 855 )