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...
Computer name of client?
Moderator: General Moderators
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
I'm not sure exactly what you're looking for but have a look at the output of:
'cause that's where you'll find the information that PHP can gather about the user, e.g. their IP.
Mac
Code: Select all
<?php
echo '<pre>';
print_r($_SERVER);
echo '</pre>';
?>Mac