On Saturday 29 May 2004 12:35 pm, Andrei Verovski (aka MacGuru) wrote: > Hi, Gerard, > > Can you please be so kind to post your code snippet you have described > below? >
<?php ob_start(); passthru('/sbin/ifconfig | grep ether'); $dump = ob_get_contents(); preg_match('/[A-F0-9]{2}:[A-F0-9]{2}:[A-F0-9]{2}:[A-F0-9]{2}:[A-F0-9]{2}: [A-F0-9]{2}/i', $dump, $mac); $mac_address = $mac[0]; ob_end_clean(); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php