On 7/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
snip
$worksheet->write_string($row, $col, $value1, $format);
$worksheet->write_string($row, $col, $value2, $format);
snip
is there any way of appending a cell by another variable? So we can
write the first variable, n then append the second variable.
snip

Use string interpolation:

$worksheet->write_string($row, $col, "$value1$value2", $format);

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to