Share/Bookmark

Featured Posts

Video Game Website Gives all it's profit to Charity Sometimes you read an article that just makes you smile, this is such one: http://www.ps3attitude.com/new/2010/02/no-fuss-reviews-4000-charity/ A video game review website that has given all of it's...

Read more

SQL AD Group membership Hi all, I have been working on a way to return Active directory group membership from a linked AD server in SQL. Its quite hard as you can`t return it from the group - you have to return it from...

Read more

Face Detection with PHP A very useful piece of PHP code that will highlight any pictures where a face has been detected. Heres the first piece of PHP code you will need, it would be best to make this an include: [sourcecode...

Read more

Basic Guide to Database Normalisation: First Normal... Before I start talking about the normal forms, I thought it would be best to explain what I am planning to write about, and what normalisation is. I am going to cover what normalisation is for beginners...

Read more

Sony: Synonymous with Innovation Sony have always been on the leading edge of innovation. From creating the WalkMan back in the 80's to popularising the CD, DVD and Blu-Ray with their PlayStation products. In this article we're discussing...

Read more

Stop Most Robots Posting to your Forms

Posted by matthew | Posted in Code Snippets, Tutorial | Posted on 05-03-2010

Tags: , , ,

1

Sometimes you don’t want to use captchas or “are you human questions” on your forms, well here’s a simply way to block the vast majority of bots posting to your website forms.

jQuery loading animation during page load or form submission

Posted by matthew | Posted in Tutorial | Posted on 09-02-2010

Tags: , ,

0

This is a really quick and nasty way to display a div while a form is submitting.

Actionscript 2.0 Image Fade (Flash Slideshow) from XML

Posted by matthew | Posted in Tutorial | Posted on 29-01-2010

Tags: , ,

1

This article describes how to use flash to cycle through images as read from an XML file using only Acriptscript, with no timeline objects what-so-ever, what we are going to make can be previewed here.

Basic Guide to Database Normalisation: First Normal Form

Posted by daniel | Posted in Features, Tutorial | Posted on 29-12-2009

Tags: , , , , , , , , , , , , , , , ,

0

Before I start talking about the normal forms, I thought it would be best to explain what I am planning to write about, and what normalisation is.

I am going to cover what normalisation is for beginners and try to write it in such a way a novice will at least understand the key principles.

PHP Arrays Primer

Posted by matthew | Posted in Tutorial | Posted on 19-12-2009

Tags: ,

1

New to PHP and want to learn what arrays are and how to use them? Then this is the article for you!

Flash RSS Scroller / Vertical Ticker using ActionScript

Posted by matthew | Posted in Tutorial | Posted on 18-12-2009

Tags: , , , ,

2

Showing an RSS feed in Flash can often be tricky, however we have found a way to make it a lot easier and to animate the feed. Our example uses an RSS feed from Twitter, but this piece of code will work for any standard RSS feed.

Upload a File via sudo AJAX

Posted by matthew | Posted in Tutorial | Posted on 17-12-2009

Tags: , ,

0

Uploading a file or document from your computer using AJAX is quite frustrating when you try to do it right, but it can be useful for many reasons. So here is the wrong easy way we have found to do it.

Resize any DOM Element

Posted by matthew | Posted in Tutorial | Posted on 15-12-2009

Tags: , , ,

0

Using jQuery it is very easy to give the user the ability to resize any DOM element and set limits — here’s how:

Find a Users Language in PHP

Posted by matthew | Posted in Tutorial | Posted on 14-12-2009

Tags:

0

It can be very useful to determine the users set language when visiting your website. The determined result can be used for many different applications, from targeted adverts and country specific affiliate links to country specific wording or images.

jQuery Animated Consectively without Using :Next

Posted by matthew | Posted in Tutorial | Posted on 12-12-2009

Tags: ,

0

Although the ‘:first’ and ‘:next’ operators can be very good in jQuery, they can also cause problems. For example you may want more control of what happens in between the delay or customise the timing further, well, we have the code just for you then.