forum.coppermine-gallery.net

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: adriano on February 18, 2004, 03:58:18 pm

Title: Need some help with code in displayimage.php (FIXED)
Post by: adriano on February 18, 2004, 03:58:18 pm
I would add in the displayarea under the image a link to a external place for a hires picture.

Code: [Select]
$info[$lang_picinfo['File Size']] = '<a href="http://myexternalurl/$number$/' . substr($CURRENT_PIC_DATA['filename'], 0, 4) . '/' . $CURRENT_PIC_DATA['filename'] . '>Download</a>';

In frontend I see no generated output!

I used the nonused variable "File Size" in displayimage.php and would receive from the script a URL like this:

http://myexternalurl/$number$/folder/filename.jpg

The name of my pictures represent in the first four chars the foldername (0010.0999.jpg -> URL should be "http://myexternalurl/$number$/0010/0010.0999.jpg) where the pictures will be found. This function for separating the foldername from the filename works. It seems, that anycase the URL I placed in front does not work or the not defined variable $numbers$ which I need, brings a wrong result.

Has anyone here a tipp for me how write the right code?

----

I found the wrong part - Thanks!