
Quick Tutorial: Simple HTML overlay on Flash for all major browsers.
Flash embedded into a web page usually sits on top of all other content on a page. This has long caused problems especially with drop-down menus being hidden behind Flash elements in web pages.
Here a few simple steps to make sure you can place HTML elements over Flash in all major browsers (IE6-8, FireFox, Chrome, Safari and Opera).
(more…)
PHP Cookies are a great way of storing small strings of data on the client side for later reference.
Cookies are sent in the HTTP header before any output such as begins. So it’s critical that any cookies you want to set be set before any output is sent to PHP’s output buffer by your script. For instance, you cannot echo or print anything before you set a PHP Cookie.
Once you’ve set a cookie, it’s automatically added to a global array, $_COOKIE. If you’re familiar with $_POST and $_GET, or even $_SESSION, you’ll get on just fine with $_COOKIE.
So let’s look at a simple example of PHP’s setcookie() function and go through it’s options and how you can use them in your PHP application.
(more…)

The .toggle() and .slideToggle() functions in jQuery are great tools for hiding and displaying information on your websites. Here is a quick guide to the basics of each function with code and examples. (more…)
This blog post aims to provide a simple explanation and the fundamental knowledge required to understand and manage the domain name for your website.
(more…)

As a business there are lots of things you can do to give yourself a more professional image, it’s important to do so where possible as in turn this will give your customers more confidence in you. One of the more powerful (but often missed) tools is the use of email signatures.
(more…)