If you add a print join ":", @player_rec; in there you'll see that it split up every single character -- this is because the pipe is treated as a special regex character (behaves like OR), so if you truly need a pipe (as in this case), it just simply needs to be escaped:my @player_rec = split '|';
my @player_rec = split '\|';
In reply to Re: DBI reports too many bind variables
by davidrw
in thread DBI reports too many bind variables
by dthacker
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |