Category Archives: Code

This section is where all my code releases and snippets get put.

jQuery Hide/Show Button

This is just a small example of how you can use jQuery to make an effective show/hide button(s) on a page with a few lines of code. It will support multiple instances per page and use it with HTML markup, … Continue reading

Posted in Code, Javascript | Tagged , | 4 Comments

jQuery ‘AjaxLinks’ Plugin

I previously wrote an article showing how you can turn a normal ‘A’ link into an ajax request and place the returned content into divs. This does the same job but used as a jQuery plugin with more customizable options … Continue reading

Posted in Code, Javascript | Tagged , , | Leave a comment

PHP5 & Memcached (Example)

In this example I’ll be showing you how to read and write from a memcached server using PHP5, using singleton class design and some basic static functions to connect your servers up before performing the caching. For those of you … Continue reading

Posted in Code, PHP | Tagged , , | 1 Comment

CSS3 XHTML Template

Since the implementation of CSS3 into some of the modern browsers, eg. Webkit based browsers and Firefox we’re starting to see more and more websites use CSS3 to style the pages. I have made an example of how we can … Continue reading

Posted in Code | Tagged , , | 1 Comment

Google Gears: LocalDB Example

I have recently been playing around with google gears; Gears is an open source project that enables more powerful web applications, by adding new features to your web browser such as interacting with the desktop, storing local data and running … Continue reading

Posted in Code, Javascript | Tagged , , , | Leave a comment

Teamspeak 3: Connection Class

Due to the recently released Teamspeak 3 BETA I have made a connection class in PHP to communicate with the server and fetch back information that I can display in a visual format. I have included a download ZIP for … Continue reading

Posted in Code, PHP | Tagged , | Leave a comment

Basic Tutorial PHP/MySQL (Part 1)

One of the most requested tutorials are those that explain how to connect and use a MySQL database server with PHP code. I have written a basic tutorial showing how to perform MySQL queries with PHP. So you’re wanting to … Continue reading

Posted in Code, PHP | Tagged , , , | Leave a comment

PHPCache Release

I have been working on a small class to cache functions in PHP. I have come up with a class that will allow you to convert any standard function into a cached function with just one line of code. The … Continue reading

Posted in Code, PHP | Tagged , | Leave a comment