Posts by heavyrick • 151 points
2 posts
- 
		0 votes2 answers1096 viewsA: UTF8 on Mysql PHP connectionI had the same problem and solved by changing my.ini file, adding the two lines below [mysqld] character-set-server=utf8 collation-server=utf8_general_ci… 
- 
		5 votes3 answers40219 viewsA: How to format a date in 'dd/MM/yyyy' format?This filter helps me deal with timestamps dateFilter.js angular.module("zendapp").filter("brdateFilter", function(){ return function(input) { var o = input.replace(/-/g, "/"); // Troca hifen por…