in reply to Interpreting variables pulled from MySQL

Hello,

I use the following line to achieve this goal :

$ValCmd = eval qq("$ValCmdEx") ;
This expands all the variables contained in the string ValCmdEx .

These vars should all be correctly set before this command, or $ValCmd will be undef. So when I do this, I usually test afterwards that I get a coherent result

ZlR.