Posts by Davi • 11 points
2 posts
-
1
votes1
answer37
viewsQ: Problem to find the IP
function getRealIP() { if (!empty($_SERVER['HTTP_CLIENT_IP'])) return $_SERVER['HTTP_CLIENT_IP']; if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) return $_SERVER['HTTP_X_FORWARDED_FOR']; return…
-
0
votes1
answer24
viewsQ: Link in tolls
I’m taking texts from my database, I wanted to know, if there is a link inside this text, how do I make it appear as a normal link for everyone?