WebDev

IE GIF animation problem

IE GIF animation problem

If you click a link or submit a form in IE, any gif image will stop its current animation and wait for the new document to load. This is because the IE browser unloads everything once it starts loading a new document, including the animation mechanisms of gif image files.

Read more…

Proportional image sizing

Proportional image sizing

A formula I made in order to recalculate proportional image sizes.

I usually do this when I need an image to fit inside a specifically sized container, but with the correct proportions.

Read more…

Simple HTML 2 PDF using PHP

Simple HTML 2 PDF using PHP

The following is a nice alternative for those who need to generate dynamic PDF documents on-the-go. This class does not require any PDF extensions to be loaded in the PHP configuration.

Read more…

PHP excel export without saving a file

PHP excel export without saving a file

A simple way of exporting data to the web in excel format, you don’t have to create an excel file, you just have to define the proper headers for the browser.

Read more…

PNG IE6 transparency issue

PNG IE6 transparency issue

Microsofts solution for the PNG transparency problem in IE 6.0

Read more…

Apache2 and case-sensitive URLs

Apache2 and case-sensitive URLs

Are you having a problem with your URLs having to be in correct case? A solution is the ’speling’ module.

Read more…

MS Access Connection Strings

MS Access Connection Strings

There are two common connection string types that can be used to connect to an MS Access database.

Read more…

Domain 301 permanent redirect

Domain 301 permanent redirect

In some cases the same web site is available through several domains, at least two, like www.domain.com and domain.com which is the most common case.

Is this a problem?

Read more…

L.A.M.P – Linux Apache MySQL PHP

L.A.M.P – Linux Apache MySQL PHP

Many of the most successful sites on the internet runs on this open source technology server model.

An excellent model to go with when creating your own web hosting environment. A proper LAMP setup can run for many years without ever loosing any stability or performance.

Read more…

HTTP POST Upload progress

HTTP POST Upload progress

Performing an upload through a form with method POST makes the web browser visually ‘hang’ while the upload is in progress. The below method can be used to give the uploader an indication about an upload in progress, and indicate when the upload is finished.

Read more…