RE: [PHP] Hardware Detection

2005-08-23 Thread Daevid Vincent
: Tuesday, August 23, 2005 1:25 PM > To: php-general@lists.php.net > Cc: 'Saenal M' > Subject: RE: [PHP] Hardware Detection > > This works on Linux/Unix boxen. > > //generate the global array here so we can re-use it > independant of output format > $devi

RE: [PHP] Hardware Detection

2005-08-23 Thread Daevid Vincent
This works on Linux/Unix boxen. On windows... You're on your own. //generate the global array here so we can re-use it independant of output format $device['os_ver'] = exec("/bin/uname -a"); $temp = preg_split("/\s+/",exec("/sbin/ifconfig -a eth0 | /bin/grep HWaddr"), -1, PREG_SPLIT_NO_EMPTY); $

Re: [PHP] Hardware Detection

2005-08-22 Thread Rory Browne
Assuming that you are running a web app then, I concour with Richard. If however you are talking about a client in a more traditional sense, in that you have a specific client application, then that client application could get the computers hard disk, in the same way as any other application cou

Re: [PHP] Hardware Detection

2005-08-21 Thread Richard Lynch
On Fri, August 19, 2005 9:55 pm, Saenal M wrote: > Can we get information about hardware on client's PC. (e.g. hard disk, > processor, keyboard, etc).? And How? > anyone knows? please reply back. Not only is it not possible, most of that information is NONE OF YOUR DAMN BUSINESS!!! :-) You can as

Re: [PHP] Hardware Detection

2005-08-20 Thread Burhan Khalid
Saenal M wrote: Hi, Can we get information about hardware on client's PC. (e.g. hard disk, processor, keyboard, etc).? And How? anyone knows? please reply back. No, this is not possible with PHP. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/uns

[PHP] Hardware Detection

2005-08-19 Thread Saenal M
Hi, Can we get information about hardware on client's PC. (e.g. hard disk, processor, keyboard, etc).? And How? anyone knows? please reply back. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php