nzrobert Posted February 20, 2011 Share Posted February 20, 2011 Hi there,I want to GET a value from URL from within a smarty template file.Can anyone help out with the syntax for that?Thanks in advance. Link to comment Share on other sites More sharing options...
Truemedia Posted February 20, 2011 Share Posted February 20, 2011 You can take the GET value through a module or prestashop core and then pass that to a template but taking it straight to the template isnt really a good idea.This is what you'd want for that: $smarty->assign('smarty_var' => intval(Tools::getValue('php_get_key')); Then: {$smarty_var} Link to comment Share on other sites More sharing options...
nzrobert Posted February 20, 2011 Author Share Posted February 20, 2011 Thanks for your help! Link to comment Share on other sites More sharing options...
sors Posted February 21, 2011 Share Posted February 21, 2011 {$smarty.get.my_var} Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now