View Single Post
  #4  
Old 07-23-2004, 02:20 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

to use php code in smarty you can use

{php}
echo "here is my php code";
{/php}

In this case, you'd be better doing an include, or you could do a php include

{php}
include "file.php";
{/php}
Reply With Quote