I need to know the MAC and the IP address of the connect clients, how can I do this in PHP?
|
Server IPYou can get the server IP address from Server MAC addressFor the MAC address, you could parse the output of Client IP addressYou can get the client IP from Client MAC addressThe client MAC address will not be available to you except in one special circumstance: if the client is on the same ethernet segment as the server. So, if you are building some kind of LAN based system and your clients are on the same ethernet segment, then you could get the MAC address by parsing the output of Edit: you ask in comments how to get the output of an external command - one way is to use backticks, e.g.
But what if the client isn't on a LAN?Well, you're out of luck unless you can have the client volunteer that information and transmit via other means. See Peter G Mac's suggestion for using Javascript. |
|||||||||||||
|
|
The MAC address of a client (in the sense of the computer that issued the HTTP request) is overwritten by every router between the client and the server. Client IP is conveniently provided to the script in Sometimes, particularly when you're dealing with an anonymizing proxy that you don't control, the proxy won't return the real IP address, and all you can hope for is the IP address of the proxy. |
||||
|
|
|
I don't think you can get MAC address in PHP, but you can get IP from |
|||
|
|
|
Never say never :) You can bridge client-server with javascript. Look at this link Javascript MAC finder By utilizing the javascript code from above and tweaking security permissions. Set the result to a variable, and send the MAC value over (with Jquery), Ajax to your PHP file `
|
|||||
|
|
All you need to do is to put arp into diferrent group. Default:
With command:
you will get:
And because apache is a daemon running under the user www-data, it's now able to execute this command. So if you now use a PHP script, e.g.:
you will get the output of linux |
||||
|
Test and Run this code snippet here http://init.me/113913/get-the-client-ip-address (right-click to open in new window) |
|||
|
|
yes you can get mac address with php this is the code:
|
|||||||||
|
protected by Community♦ Jan 11 '12 at 9:16
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
