-
Binu Mathew commented on the blog post Photoshop license – Logo contest
abhilash’s word is good
8 months, 2 weeks ago · View
-
Binu Mathew wrote a new blog post: Getting Client IP Address using PHP
i was writing a code in the PHP for getting client address,i got following code as working, try out….
but you have to upload the code in a web server,and when it load in the client page we will get the client address
CODE:-<?php
function getIP() {
$ip;
if (getenv(“HTTP_CLIENT_IP”))
$ip = getenv(“HTTP_CLIENT_IP”);
else if(getenv(“HTTP_X_FORWARDED_FOR”))
$ip = getenv(“HTTP_X_FORWARDED_FOR”);
else if(getenv(“REMOTE_ADDR”))
$ip = getenv(“REMOTE_ADDR”);
else
$ip = “UNKNOWN”;
return [...]8 months, 3 weeks ago · View
-
Binu Mathew created the blog Binu Mathew 8 months, 3 weeks ago · View
-
Binu Mathew created the blog Binu Mathew 8 months, 3 weeks ago · View
-
-
Binu Mathew became a registered member 8 months, 4 weeks ago · View
