Posted by atwiawomo on 12/02/07 23:44
Hi
This may be simple to solve, but I can't seem to do it :(
I am trying to generate an include name on an image gallery page from
a variable name.
By this I mean I already have a numeric value set the variable
$imageCat.
What I want to do is pull in an external include file using the
variable as the file name. So if $imageCat is set to 2 I want to bring
in 2.html ($imageCat.html).
I can hard code each include request as such:
{if $imageCat=="2"}
{php}
include ("2.php");
{/php}
{/if}
But I am dealing with oodles of categories so this file would be huge.
A dynamic option would be very cool but I just can't seem to get my
syntax right.
If anyone could give me even a vague pointer; I would be sooooo
greatful.
Many thanks
Mr M
[Back to original message]
|