in reply to Resolving Imbedded Variables

The problem is that you are using single quotes around your output string. Use double quotes instead:
$text="titl=This is test $ma_test of $mb_test broadcasting system";
You should read up on variable interpolation and the different ways of quoting strings.

Replies are listed 'Best First'.
Re^2: Resolving Imbedded Variables
by davidrw (Prior) on Nov 07, 2005 at 17:42 UTC
    I think he's getting that string, sigils and all, out of a database and is really looking for a custom templating solution.