Jump to content

Smarty Template Engine Conversion Help


invisionblue

Recommended Posts

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"; 
} 
?>  

Link to comment
https://forums.phpfreaks.com/topic/128623-smarty-template-engine-conversion-help/
Share on other sites

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}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.