Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/09/2005, 12:06
m@cd
 
Fecha de Ingreso: mayo-2005
Mensajes: 103
Antigüedad: 19 años
Puntos: 2
encontre esto en phpfacil y me sirvio ya que obtengo el nombre del pc y la ip para guardarlo en una bd, gracias turko por la palabra clave "remote_host"

$ip = $REMOTE_ADDR;
// En: IP Adress
echo $ip;
?>
<B>RemoteHost:</B>
<?php
$host = gethostbyaddr($REMOTE_ADDR);
// En: Remote host name
echo $host;
?>
<BR><BR>
<B>With:</B>
<?php
$navigator = $HTTP_USER_AGENT;
// En: Navigator informations
echo $navigator;