Skip to content

Instantly share code, notes, and snippets.

@rslahmed
Created January 26, 2020 16:29
Show Gist options
  • Save rslahmed/75bb98eb82f85248822fbb20d5a232d1 to your computer and use it in GitHub Desktop.
Save rslahmed/75bb98eb82f85248822fbb20d5a232d1 to your computer and use it in GitHub Desktop.
Get IP and Mac Address
<?php
// get mac address
$MAC = exec('getmac');
$MAC = strtok($MAC,' ');
echo $MAC;
// get ip address
$IP = $_SERVER['REMOTE_ADDR'];
echo $IP;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment