Do you mean to concat the description?
$description = $var1.$var2;
?
Or keep both elements seperately accessible? In which case $description would be an array:
$description[]=$var1;
$description[]=$var2;
to reference them later:
$myfirstvar=$description[0];
$mysecondvar=$description[1];
Or did you have a different problem in mind?