Posted by jonathan.beckett on 02/15/06 17:34
As a starting point, I would re-write your if statements. You're currently writing something similar to this... if ( 1 || 2 || 3 != 4) you should really be doing... if ( (1!=4) || (2!=4) || (3!=4) ) Hope that makes sense.
[Back to original message]
Copyright © 2005-2006 Powered by Custom PHP Programming