- or download this
$a = "aaaaa\n";
$a = $a."bbbbb";
...
what it actually runs is
insert into test (field1) value 'aaaaa
- or download this
$sql="insert into test (field1) value 'aaaaaaa' + Chr(13) + Chr(10) +
+'bbbbbbbb';
- or download this
$a =~ s/chr(13)chr(10)/' + Chr(13) + Chr(10) + '/;