in reply to Comparing the individual characters in two strings to find their differences
Shouldn't it look like:
my ($additionaltext) = $sth->fetchrow_array;
or
my @data = $sth->fetchrow_array; my ($additionaltext) = @data;
? fetchrow_array() returns array, not scalar.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Comparing the individual characters in two strings to find their differences
by ikegami (Patriarch) on Apr 03, 2008 at 07:51 UTC | |
by grizzley (Chaplain) on Apr 03, 2008 at 07:58 UTC |