Regarding split text and match from data base [message #183843] |
Fri, 22 November 2013 11:28 |
jalaf28
Messages: 8 Registered: November 2013
Karma:
|
Junior Member |
|
|
Hello All
I just start learning PHP and i am using 5.4.16 i just want to split the out put of the following and match from the database and print the System name.
here is the Code
<?php
ob_start();
$line=shell_exec("arp -a");
echo "<pre>;
echo $line;
echo "</pre>";
?>
It shows the output of the command "arp -a" and show the Ip address and Mac address on the LAN system. i saved the name and the Mac address in the database.
now i want to extaxct the command output and match ["MAc address] with database and show the Particular system name and Ip Address. i try google but not sufficent.
i just want to show th eout put like
IP Name
192.168.1.x Server1
192.168.1.x Client1
Thanks
Amit
|
|
|