Get Localhost ip in PHP 4 all interface
regular usage
$ifconfig
eth0 Â blob blob
lo   blob blob
wlan blob blob
try something better like this
udhayakumar@TB013:~$ ifconfig eth0 | grep "inet addr:"
     inet addr:192.168.0.117  Bcast:192.168.0.255  Mask:255.255.255.0
udhayakumar@TB013:~$ ifconfig wlan | grep "inet addr:"
     inet addr:192.168.0.119  Bcast:192.168.0.255  Mask:255.255.255.0
udhayakumar@TB013:~$Â
now How to use these things in php code
<?php
echo exec('/sbin/ifconfig eth0 | grep "inet addr:"');
echo "<br />";
echo  "wlan ip address::::: ";
echoÂ
exec('/sbin/ifconfig wlan | grep "inet addr:"');
?>
Correct me if i am wrong.... . .








