Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/10/2010, 19:47
jucuegas2
 
Fecha de Ingreso: octubre-2010
Mensajes: 2
Antigüedad: 14 años, 1 mes
Puntos: 0
Respuesta: Usar cookie usuario vbulletin desde aplicación externa

al final he usado esto
Código PHP:
<?php   
include('./global.php');     
include(
'./includes/functions_user.php');  

if (
$vbulletin->userinfo['userid'] != '0') {   
    echo 
"Nombre usuario: ".$vbulletin->userinfo['username']."<br>";  
    echo 
"ID usuario: ".$vbulletin->userinfo['userid']."<br>";  
 } else {   
?>   
No estas logueado!!                         
<?php  
}   
?>