jawad waheed
jawad waheed

Reputation: 308

Using PHP code in Smarty tpl FIle

I am new to smarty and I want to use php code in template file i-e tpl file. I have seen the documentation and searched on google but could not find how to use php code they say we need to configure smarty to allow php execution but could not find how to do it.

Kindly help me in this regard. Thanks

Upvotes: 14

Views: 70999

Answers (4)

softnwords
softnwords

Reputation: 41

Find the file smarty.class.php in your host directory

Go to smarty.class.php

Edit var $php_handling = SMARTY_PHP_ALLOW;

Save the file in server.

Now you may add php in tpl file as <?php ....code.... ?>

Upvotes: 4

Prisoner
Prisoner

Reputation: 27618

Easy as boiling an egg!

{php}echo "hello!"{/php}

Second link down, for reference.

Edit as of Smarty 3.1:

As of Smarty 3.1 the {php} tags are only available from SmartyBC.

Source: http://www.smarty.net/docs/en/language.function.php.tpl

Upvotes: 29

Olli
Olli

Reputation: 752

Have you tried to enable error reporting?

error_reporting(E_ALL);
ini_set("display_errors", true);

Upvotes: -1

Piskvor left the building
Piskvor left the building

Reputation: 92752

You may have seen the documentation, but you have missed {php}:

The {php} tags allow PHP code to be embedded directly into the template. They will not be escaped, regardless of the $php_handling setting. This is for advanced users only, not normally needed and not recommended.

Emphasis mine, source: http://www.smarty.net/docsv2/en/language.function.php.tpl

Note that putting PHP in template code is the easiest way to shoot yourself in the foot - the main purpose of Smarty is to separate PHP code and HTML templates. In other words, the mere fact of using this tag is a serious red flag; in most cases, it is possible to fix the underlying issue, and avoid PHP inside the template altogether.

Upvotes: 2

Related Questions