Hi I Want To Insert Php Code In .tpl File i Cant Insert php Codes In it.. Any Body have Any Idea.....
you will have to explain a little more, do you use any template engine like smarty ? (usually uses .tpl extension for templates files) if so you will need to pass your php variable to the smarty engine STemplate::assign('variable-name-you-want-to-use-in-template','$php-variablename') otherwise if you dont use any template engine you should be fine by doing <?php $variablename ?> example with HTML <a href="somelink"><?php $variablename ?></a> hope its what you was looking for regards