Welcome Guest, Not a member yet? Register   Sign In
how can i get system mac address
#1

i'm using this code

function get_real_mac_addr(){
system('ipconfig /all');
$mycom=ob_get_contents();
$findme = "Physical";
$pmac = strpos($mycom, $findme);
$mac=substr($mycom,($pmac+36),17);
return $mac;
 }


its working in localhost and get mac address but in live server its not working

how can i get mac address in live server??
Reply
#2

on a regular shared hosting server php functions like system(), exec() etc are disabled for security reasons.
Reply
#3

(This post was last modified: 04-17-2017, 10:34 PM by demonicinn.)

ok then how can i get mac address on shared hosting??
Reply
#4

You should ask your hosting provider for this kind of support.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB