I have this array:
@test = qw(ID Name Category Image Description Price Taxable OPT_Color);
I want to add two values to this array. After description and before Price so the arry becomes:
@test = qw(ID Name Category Image Description Addtime Quantity Price Taxable OPT_Color);
How to do that?
Start Free Trial