Page 1 of 1

Computer name of client?

Posted: Sun Apr 13, 2003 11:39 am
by InternetX
Is it possible to find the computer name of the client with PHP?
Or is it not possible to find them?

Sorry for my english... I'm 15 and from Germany...

Posted: Sun Apr 13, 2003 12:10 pm
by twigletmac
I'm not sure exactly what you're looking for but have a look at the output of:

Code: Select all

<?php
echo '<pre>';
print_r($_SERVER);
echo '</pre>';
?>
'cause that's where you'll find the information that PHP can gather about the user, e.g. their IP.

Mac