Fat Free Framework, a (real) tiny php framework
Yes, there are many php frameworks that claim to be ‘tiny’, of course they can be tiny compared with frameworks like Zend or Code Igniter. In this case Fat Free Frameork (aka F3) is tiny compared with the ‘tinies’ php frameworks. Besides that, F3 takes a different approach than most of the php mvc frameworks [...]
Adminer, phpmyadmin alternative
Recently I had to add a few tables to a Joomla website I was developing, and also had to import a csv file into those tables. For some reason the client didn’t have access to phpmyadmin so I had to find an alternative, something simple that I could install quickly for adding these tables. So [...]
Zeitgeist Moving Forward
Ok, I will get off topic just for a bit to spread the word about this documentary that attempts to make social awareness about the things that are going on in the world, but it doesn’t stay there, it proposes a solution which is basically a change of values and consciense: Zeitgeist Moving Forward (2011) [...]
Email validation with php
When it comes to email validation it’s very common to use regular expressions, but since php 5.2 there’s an easier, clean and secure way to validate en email, using the filter_var function, it is as simple as this: With filter_var you can validate many other interesting things like url’s and ip’s. Cheers. 1 person likes [...]
(secondlife) Showing near avatars in a menu
Someone in the forums just asked how to get a dialog that shows a list of near avatars, well here’s the script, it’s pretty simple and i’m using the same menu system that I showed you in previous tutorials… DRY (don’t repeat yourself) . Here’s the code: This simple script can be controlled only by [...]