I have a variable that calls an item, but what I have to display is the description of his category. So the structure I figured out is something like this willing that writing $item1 in $var1 it displays "Bla Bla Bla" (the value of $cat1):
$var1 = $item1;
$item1 = $cat1;
$cat1 = 'Bla Bla Bla';
Believe or not it doesn't work :-) I am a novice with php, sorry to ask stupid questions! And thank you so much to help!