1
Hi all,
I,m working on modules/xcgal/templates/xcgal_display.html
I added an php routine inside this file. But inside the <{php}><{/php}> I need one XOOPS variable <{$picture_url}> in order to get the file extension:
<{php}> $foto_temp = <{$picture_url}>; echo $foto_temp ; <{/php}>
If I use the former code I get a blank page.
So I,d tried to concatenate it:
<{php}> $foto_temp = ".<{$picture_url}>."; echo $foto_temp ; <{/php}>
And I got:
.<>.
I´d tried this one as well:
<{php}> $foto_temp = $picture_url; echo $foto_temp ; <{/php}>
And the variable $foto_temp got no value.
I need something like this:
<{php}> $foto_temp = albums/userpics/10001/Sussurros.wmv
; echo $foto_temp ; <{/php}>
I´ve been using XOOPS 2.0.18
Any idea?
Thanks in advanced!
Claudio Reis