• How to auto populate with AJAX

    Hello all you lovely people. I trust your day has been awesome so far.Today I want to go through a common task lots of coders do when working with input fields. Usually, you might not want the user to be put through the stress of remembering the full value, and its corresponding details. The solution…


  • DC Heros as programming languages( graphic )

    Earlier on a post was written comparing DC Comic Heros to Programming languages. This graphic below is a summary of that post. Enjoy and do share. Cheers.


  • Getting past the git permission denied error

    Have you ever been delayed by that annoying error which prompts you to share a public key with a git repo ? I have, and I am sure you have too. Below is a 3 step process that would sort you out in a giffy, and get you back on the road to finishing that…


  • ZF 3 error: Module could not be initiated

    Here is a Zend framework 3 error that you might get once or twice. It would look something like this; Fatal error: Uncaught exception ‘Zend\ModuleManager\Exception\RuntimeException’ with message ‘Module (ModuleName) could not be initialized Here is how to solve it. Make sure the module is present in project name/config/modules.config.php. For example return [ …’Application’, ‘ModuleNameOne’, ‘ModuleNameTwo’…


  • Django vs Zend framework: Part 2 of a thrilling framework match up

    This continues our framework comparison. The first part was from this post. This post is the last of the framework match up. Now bring your imaginations to work. If you have forgotten, here is a re-introduction of our main actors. The cast: Ring announcer Referee. Commentator #1 Commentator #2 The Crowd Zend framework Django framework…


  • From Zero to Zendcredible

    The classic Disney movie Hercules, usually brings to the surface (for most people I know) the yearning to go the distance no matter how insurmountable the obstacles may seem. For that is all you need to go from a zero to a hero.  And with Zend, it takes you from a Zero to Zendcredible. Everyone…


  • Django vs Zend framework: Part 1 of a thrilling framework duel

    As someone who has enjoyed using different web frameworks, I cannot help but see the many similarities between all these various technologies. From how they are structured right down to their naming formats. Today, I would like to continue my Zend framework series by contrasting it with another framework. Specifically, a comparison between Django and…


  • Kick starting your Zend framework journey

    I heard a quote that says it is tough to move an object that stands still as compared to one it is already moving. It is the same as saying it would be hard to resume a project if you have not already started it as compared to one that has already begun. Kick starting the…


  • Zend framework as your next PHP enterprise framework

    Are you shopping for a PHP framework for your next enterprise app? Usually, when you say enterprise, languages like C sharp and Java spring quickly to mind. Today let’s consider using a different language. Let’s opt for the world’s most used language on the web (that being PHP), and use that in your company. One…


  • Multiple domain setup with Wndows and Apache

    Sometimes, you might have several projects you want to access on the same server. You might also want to access them via a user friendly address, instead of using the IP address. Accessing it through a server is possible only through 127.0.01. What if we want to access more than just one project on the…