Clear Filters
Clear Filters

HOW TO RETRIEVE A VISITOR'S IP ADDRESS

5 views (last 30 days)
mohammad ibrahim
mohammad ibrahim on 1 Aug 2021
Edited: mohammad ibrahim on 1 Aug 2021
How can I retrieve the IP address of visitors to my web app using MATLAB ?
for example in .NET, we can use:
public string IpAddress()
{ string strIpAddress; strIpAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (strIpAddress == null)
{ strIpAddress = Request.ServerVariables["REMOTE_ADDR"]; }
return strIpAddress; }
thank you

Answers (0)

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!