Category Archives: Languages
Symfony Form: unsetAllFieldsExcept()
When creating forms in symfony which extends from a Base (ORM) class, you sometimes do not need all fields that Propel/Doctrine generates for you. If you want to remove them you have several ways to do so. 1. Unset the … Continue reading
A few helpful PHP date methods
For a lot of people dates in PHP are an issue, and the PHP functions aren’t sufficient enough to do all converts you need. Therefore you find a few easy PHP date conversion methods. Feel free to add your own … Continue reading
PHP DOMDocument: Convert Array to Xml
Recently I start working on an export module to invoice applications. One of them uses a very simple xml structure (simple nodes without attributes etc.) and therefore I wanted to create this xml also in a very simple way: from … Continue reading
What browser should you use?
Over the years we have tried to create websites that are displayed correctly on every browser, and sometimes we did manage to get it correct. But it isn’t that easy to get your application configured and coded so that all … Continue reading
Interesting web developer tutorials and apps
Microsoft SuperViewer Microsoft recently released a small piece of software on which a web developer can test his application in different browsers. Try it; it might come in rather handy as this will maybe become one of the futures most … Continue reading
Symfony Forms Framework: Merge 2 forms
Recently I had to create a form to create/update users in our system. Some time ago we decided to save are users in 2 tables. The first table would contain all login information and the second his personal information. This … Continue reading
enhance your css
Writing css code isn’t that hard, it’s easy, clean but can be a pain in the ass to keep it readable when you have hundreds or maybe thousands of lines of code. When sticking to specific rules it can all … Continue reading
Complexity in webdesign
Ever heard of ‘less is more’? This is, more than ever, a standard that every developer should follow while designing his new website. Why the f* would I start talking about that, you can ask yourself. Well, the answer is … Continue reading
Comments to the max
I was wondering around on the big wide scary web and saw a lot of badly written comment for code so I thought it shouldn’t be bad to give a little overview on how comment should be written, at least … Continue reading →