Posts by Kaik • 3 points
4 posts
-
-4
votes2
answers963
viewsA: How to get the public IP of a connected user via socket?
this tbm works <?php $clientIP = $_SERVER['HTTP_CLIENT_IP'] ?? $_SERVER["HTTP_CF_CONNECTING_IP"] # when behind cloudflare ?? $_SERVER['HTTP_X_FORWARDED'] ?? $_SERVER['HTTP_X_FORWARDED_FOR'] ??…
-
0
votes4
answers5763
viewsA: Capture Real User IP
try to use this <?php $clientIP = $_SERVER['HTTP_CLIENT_IP'] ?? $_SERVER["HTTP_CF_CONNECTING_IP"] # when behind cloudflare ?? $_SERVER['HTTP_X_FORWARDED'] ?? $_SERVER['HTTP_X_FORWARDED_FOR'] ??…
-
-2
votes2
answers25
viewsQ: How to hide something with jquery and css
I need to hide some things using jquery along with css , I tried using Hide() but it didn’t work... some solution?? my code: $(document).ready(function(){ $('#ID_USER')hide();//não funcionou... });…
-
1
votes1
answer50
viewsQ: How to block a <a> tag with javascript
I have a Step by Step I need to cancel the ticket to the next page... This is my code : var nome = document.getElementById('nome').value; var resposta = true; if(nome == ''){ var resposta = false; }…