Expand|Select|Wrap|Line Numbers
- $cEn_com =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
- $cEn_art =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
- $cResult .= "<a href=javascript:open1('/cgi-bin/admin/order_details.pl?ordernumber=ordernum&artist=$cEn_art&company=$cEn_com');>click</a>";
to diaplay popup window.The open1 function that i am placing in head tag in my html file.
here what my problem is when any one of parameters ( $cEn_com and $cEn_art) has some value the output (OUTPUT is click) is display.If the values are empty string nothing get display.
Is any Idea.
Thank U.