Posts by Dinho19sp • 57 points
4 posts
-
-2
votes1
answer816
views -
1
votes1
answer1204
viewsA: Redirect to a page by passing an object
You can use as a meter the object to be passed, in the method that does redirect to the page and capture. I usually use a view class that I always call on the controller. Example: /** * Description…
-
3
votes3
answers1773
viewsA: How to bypass an accent in mysql + Php
Try to do so: SELECT * FROM `produtos` WHERE status_pr='online' AND nome_pr LIKE _utf8 'SAO PAULO' COLLATE utf8_unicode_ci more information ->…
-
2
votes9
answers27569
viewsA: How do I read Javascript URL values (Querystring)?
function getUrlVars(){ var vars = [], hash; var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for(var i = 0; i < hashes.length; i++) { hash =…