Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/01/2014, 08:24
Avatar de iEnrique
iEnrique
 
Fecha de Ingreso: abril-2013
Ubicación: España
Mensajes: 346
Antigüedad: 11 años, 1 mes
Puntos: 5
Respuesta: Problema al bajar imagen

Lo tengo así, pero sigue sin funcionar:

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. readfile($file);
  6. ?>