invisionblue Posted October 15, 2008 Share Posted October 15, 2008 I'm wanting to convert the following code from PHP to smarty template engine. How exactly would it look? Thanks in advance. <?php $filename = '/optional/path/file.txt'; if (file_exists($filename)) { echo "The file $filename exists"; } else { echo "The file $filename does not exist"; } ?> Quote Link to comment Share on other sites More sharing options...
invisionblue Posted October 15, 2008 Author Share Posted October 15, 2008 Sorry for posting in wrong forum, now of course after I post this I solve it myself :-\ If anyone runs into this problem the following code works: {php} $filename = 'h468.htm'; if (file_exists($filename)) { {/php}include{php} } else { echo "The file $filename does not exist"; } {/php} Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.