Topic: How to print two values inside same cell

$rep->TextCol(5,6,$in);
                $rep->DateCol(5,6,$date,true);

i need to print two values separated by /. Eg: SIN / 12-03-2015 like this.how i achieve

Re: How to print two values inside same cell

Change $date to "SIN / $date" and you're done. Or "$var / $date", if "SIN" is some other variable.