« September 2006 | Main | December 2006 »

November 13, 2006

Applet for file uploading which gets around PHP file size limit

SourceForge.net: Open Discussion

Posted by pj at 11:50 AM | Comments (0)

November 10, 2006

The Who - Live8

YouTube - the who

Posted by pj at 11:49 PM

There Must Be An Angel on Parky

YouTube - Eurythmics - There Must Be An Angel ('live' on Parkinson)

Posted by pj at 11:47 PM

November 08, 2006

PEAR iCal library

PEAR :: PEPr :: Details :: iCal

Posted by pj at 01:12 PM

November 07, 2006

Getting the checked radio button when there's only one

If I only have one radio button, JS decides it ain't a list and won't give you a length for it, so you have to trap for this:

limit = document.forms[1].customer_id.length;

if(limit){ for(i = 0; i < limit; i++){

        if(document.forms[1].customer_id[i].checked == true){

                this_id = document.forms[1].customer_id[i].value; }

                }

        }

else { this_id = document.forms[1].customer_id.value; }

window.opener.document.location='index.php?customer_id=' + this_id; 

window.close();

Posted by pj at 04:01 PM

SVN RSS and Atom feeds


svn2feed.py

Posted by pj at 03:46 PM