
We will explore a bit the PDO Library (Php Data Objects) provided by Php. Context The code base includes the following features : PSR4 autoloading with Composer Typed properties Mysql DB with 2 tables A controller and 2 entities following the tutorial (following the MVC Pattern) A default endpoint (homepage displaying all data from an […]

We have a demo page for this so no worries about it – Today we implement several features to deal with a form input : Autocomplete of the input Ajax call to an external url using JQuery Parsing JSON data from the external url We will follow the tutorial on appending form inputs with Jquery […]

When adding a new module manually in Zend 3 platform, you basically add files within a defined folder structure of your own (you can just copy a skeleton application and rename the directory). See the tutorial on Zend 3 project for more details. Once you have added the files you will generally meet a few […]

From what we’ve introduced while talking about adding a footer link to our Magento2 store, we will dig a little further so anyone can understand more precisely how to deal with layouts & templates using Magento 2. Of course we strongly advice you to read all the details covered on the dev doc of Magento […]

Working with different CMS and multiple users requires the server to be set up properly or you might end up with security leaks. I won’t cover the whole settings for your entire server but only the access to your web pages via SFTP (I definitively not recommend the use of FTP). Generally speaking of web […]

It’s been some time I planed on talking about Yaml and more precisely about its use for Mysql configuration tables and Entity generation. So today we will overview Yaml for Mysql automatic table integration using Doctrine and Zend 3. If you have never heard about Yaml, well you are better late than never ! What […]

For those who have never heard about NetBeans, no worries, you’ve just missed a powerful tool to work with, depending on the language(s) you employ the most, choosing between IDEs (Integrated Development Environment) might not be easy and once you get used to one in particular then why switching ? There are so many comparison […]

Today we are going to implement a sign up form within our authentication module we’ve set up before. Note that we don’t want to be in competition with Zf Commons with their registration and login module, this article is more like a tutorial to train you on using Zend and handling a form. In later […]

Getting around Git can be a daunting task. But using Git is essential when it comes to sharing your development with a team or a community, it allows you to keep track of the changes and follow the version of the project. Anyway if you are here you don’t want to listen anymore on the […]
Don’t you know already that there is no need of an image to make a clean looking Text logo ? Using a font of your own or one you’ve downloaded from the many free fonts websites available on the Internet, is possible without much code. The @font-face style tag is here for us and highly […]
Generally submenus are being added under menu items and are not separated from the navigation menu or a customized menu. But if you need to display submenu items at a different spot, that is a different approach and we need to get ourselves into coding. We’ve already dealt with the main function handling menus : […]