{iw_value name="links.description"/}
I want to write bellow thing from perl, how can I do this[html] {iw_value name="links.title"/} {iw_value name="links.description"/} [/html]
foreach my $links (iwpt_dcr_list('dcr.simpleLink.sampleLinks'){ iwpt_output("<h3>" . iwpt_dcr_value('links.title') . "</h3>"); if (iwpt_dcr_value('links.titleType') eq "non"){ my $desc = iwpt_dcr_value('links.description'); iwpt_output(qq(<div class="T_A22_hr"><hr /></div>\n<p>$desc</p>); }}