Hi,
Monday, July 28, 2003, 4:29:46 PM, you wrote:
>>Try this:
>><?php
>>exec('ipconfig',$catch);
>>foreach($catch as $line){
>> if(eregi('IP Address',$line)){
>> list($t,$ip) = split(':',$line);
>> echo 'IP is '.$ip."\n";
>> }
>>}
>>?>CL> Thanks Tom, but I think it only work for Win NT, how about Win 9x? There is ipconfig.exe in win98 SE thats about all I know. -- regards, Tom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

