Computer name of client?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
InternetX
Forum Newbie
Posts: 22
Joined: Tue Jan 21, 2003 1:57 pm
Location: Germany
Contact:

Computer name of client?

Post 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...
User avatar
twigletmac
Her Royal Site Adminness
Posts: 5371
Joined: Tue Apr 23, 2002 2:21 am
Location: Essex, UK

Post 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
Post Reply