Get MAC address of client using PHP
1 2 3 4 5 6 7 8 9 10 |
<?php ob_start(); system('ipconfig/all'); $mycom = ob_get_contents(); ob_clean(); $findme = "Physical"; $pmac = strpos($mycom,$findme); $mac = substr($mycom,($pmac+36),17); echo $mac; ?> |