Category: PHP

  • Eclipse Everywhere. Buah.

    It’s been a little quiet lately. This is because I am working on a cute little project that I will be able to present soon. More when the time is ready. There has been rumor lately that Zend (developer of PHP) will release a PHP Framework. This is nothing new, there has been a IDE…

  • Better code downloading with AJAX

    I’ve been playing with Code downloading (or Javascript on Demand) a little more. Michael Mahemoff pointed me at his great Ajaxpatterns in which he suggests a different solution: if (self.uploadMessages) { // Already exists return; } var head = document.getElementsByTagName(“head”)[0]; var script = document.createElement(‘script’); script.type = ‘text/javascript’; script.src = “upload.js”; head.appendChild(script); Via DOM manipulation a…