Posts by Victor Gazotti • 113 points
2 posts
- 
		0 votes1 answer170 viewsA: POST or GET without formHave you tried using js? If you are using jquery it would be something close to that: $(':checkbox').on('click', function(){ alert($(this).val()) }) Of course in place of Alert you should use your… phpanswered Victor Gazotti 113
- 
		1 votes4 answers168 viewsQ: How to redirect url with htaccess out of the domain?I own a domain www.dominio.com.br. On a given page, I need to put a link to the customer’s google+ . I’m using: a href="www.google.com" target="_blank" For testing, and what is happening is that…