Ver Mensaje Individual
  #6 (permalink)  
Antiguo 18/01/2014, 08:48
PHPeros
Colaborador
 
Fecha de Ingreso: septiembre-2013
Ubicación: España
Mensajes: 3.648
Antigüedad: 10 años, 8 meses
Puntos: 578
Respuesta: Problema al bajar imagen

Código PHP:
Ver original
  1. <?php
  2. $file = "http://www.habbo.".$_GET['hotel']."/habbo-imaging/avatarimage?user=".$_GET['user']."&direction=".$_GET['direction']."&head_direction=".$_GET['head']."&gesture=".$_GET['gesture']."&action=".$_GET['action']."&size=".$_GET['size'];
  3. header("Content-disposition: attachment; filename=avatar_".$_GET['user'].".png");
  4. header("Content-type: image/png");
  5. echo file_get_contents($file);
  6. ?>