Hi!
I would like to use the GET parameters out of the URL in an UDT. E.g. I have
index.php?mact=produktverwaltung,cntnt01,default,0&cntnt01what=produkt&cntnt01parent=Fernseher&cntnt01returnid=53&hl=en_US
How can i get the Parameter cntnt01parent?
Best,
JonnieB
Use GET Parameters in UDT
Re: Use GET Parameters in UDT
The global $_GET variable is available in your UDT, so
Normally, if you need such a value in your template, the module should assign it to Smarty and you should use the Smarty variable in your template or UDT.
Kind regards,
D
Code: Select all
$_GET['cntnt01parent']
Normally, if you need such a value in your template, the module should assign it to Smarty and you should use the Smarty variable in your template or UDT.
Kind regards,
D
Last edited by Anonymous on Wed Jul 15, 2009 11:54 am, edited 1 time in total.