PDA

View Full Version : HOW DO I: test if file exists in a template?


ataraxia
12-12-2004, 05:30 PM
I'm just a novice coder and I can't seem to find an answer to this in Google or any of the XHTML sites, so please help.

Is there some bit of code that I could include in a vB3 template that would test if some particular file exists. Something like this: <If exist ("/path/to/foo.txt")>
do something
</if>

If this cannot be done in a template, would a PHP include do it? How would that be done?

Thanks!

Colin F
12-13-2004, 05:09 AM
I would check in the phpinclude_start template, and set a variable.

Then, check that variable in whatever template you like with <if condition="$var == 1">//foo</if>