473,488 Members | 2,516 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

how can I find the system mac address?

12 New Member
this code is not working online

Expand|Select|Wrap|Line Numbers
  1. ob_start(); // Turn on output buffering
  2. system('ipconfig /all');
  3. $mycom=ob_get_contents(); // Capture the output into a variable
  4. ob_clean(); // Clean (erase) the output buffer
  5.  
  6. $findme = "Physical";
  7. $pmac = strpos($mycom, $findme); // Find the position of Physical text
  8. $mac=substr($mycom,($pmac+36),17); // Get Physical Address
  9. echo "<br>";
  10. echo $mac;
Jan 12 '13 #1
1 3213
Atli
5,058 Recognized Expert Expert
What OS is your server running?

The ipconfig command is a Windows command, so it will not work on Linux servers. (Which is by far the dominant OS for PHP hosts.) The Linux equivalent is ifconfig, although the output it generates is not the same. You'd have to rewrite the parsing portion of the code to match that output.

Also note that it's not uncommon for shared hosts to disable functions like that for security reasons. You may want to add some error checking to make sure both the function and the call are successful.
Jan 12 '13 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

13
29090
by: Jay | last post by:
I need to write a program to find mac address of a remote computer, is this possible? How?
29
3863
by: chellappa | last post by:
hi all I need to write a program to find mac address of a my computer using libaries, is this possible? How? thanks
4
2440
by: Arun | last post by:
Like its possible to find IP address of a visitor in same way is it possible to find the visitor's PC's MAC address? -Regards,
2
1015
by: Angel | last post by:
Is there a function that one can pass a web address and return a Windows File System Address. In other words, I specify an image at being at the following http address: ...
12
2579
by: Souljaz | last post by:
Hi, how to find IP address. Thanks
3
9769
by: FX | last post by:
i need system.h to execute dos based commands. but i`m able to find system.h anywhere. whichever i found wasnt correct. plz lead me to the correct file Any Help will b appreciated
0
1078
by: kanimozhi | last post by:
a C program to find MAC address from IP address in Linux
0
6967
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7142
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7181
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
4875
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4565
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3078
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3071
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1383
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
618
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.