How do I construct attachment url to be used in a page?
 
Thats what I did:
 
 
$topic = mgd_get_topic(258); 
  
  $list    = $topic->listattachments();
  while($list->fetch()) {
  
    $attachment = mgd_get_attachment($list->id);

   $file_name =  $attachment->name;
   $file_url = $attachment->location;
 
 $image_url = "$HTTP_HOST/".$file_url."/".$file_name;
 
  }
 
does not seem to work

Reply via email to