Posts by Cristian Curtinaz • 21 points
3 posts
-
-1
votes3
answers46
viewsA: Code to open new tab link with counter
To make it very simple for you, who has no contact with programming. Just change the value of the variable your_link to the link you want to open in a new tab. <html> <head> <script…
-
-2
votes1
answer30
viewsA: Login PHP + COOKIE + AJAX
You’re missing a key in your js, after the $.ajax Should stay like this: $("#form_validation").click(function(){ var username = $("#usuario").val().trim(); var password =…
-
1
votes1
answer46
viewsA: Checkebox with database data
Basically, your if is wrong. It should be written like this: if(($selecao['id'])=='1'){ $estado="checked" ; }else{ $estado="" ; } There’s one more error I’ve seen in your echo. It’s calling the…