DACr Update

Phase2 of the DACr implementation is now finished. This is the finished front end interface. I’ve added some extra tweaks including the ‘dictionary & keyword’ sort and tidied up some code. The front-end is now done. I may add a ‘recently caught’ and ‘budget domains’ widget to the front page later time & inclination permitting.

php5: arrays, stdClass and best practice

php5.2+ is all about objects and a maturing OOP language. Up until now the reliable method to structure an associative list of items is by using an array

CODE:
  1. $arA = new array();
  2. $arA['one'] = 1;
  3. $arA['two'] = array('one','two');
  4. $arA['three'] = 'three';