Quote:
Originally Posted by yahoooh
AndrewD
i have folder with more than 3000 bmp images
i want to put it in category with description begin like this:
HTML Code:
[img]http://www.mysitename.com/folder/1.bmp[/img]
and so on for other files
this will give the picture appearing in the description
i open new category , i run scan admin
and it insert all files but the error is not write description as i want
i use this in:links_scantext
PHP Code:
$file[name] [IMG]http://www.mysite.com/$file[dir]/$file[name][/IMG]
but $file[name] not show any thing !
i test the default template and also it will not whow the filename
i need to show filename with extension also to make it work
plz help me
thanks
|
When the template is called, $file contains the following:
["dir"] => file directory
["prefix"]=> filename prefix
["type"]=> filename filetype
["linkname"]=> normally the same as prefix, unless user code attached to the ldm_addlink_getfileinfo hook has modified it
Code attached to the ldm_addlink_getfileinfo hook can also dump other information into that array.
So I think you need $file[prefix].$file[type] rather than $file[name]