in reply to Issue with Print
Your issue isn't with print, it's with fetchrow_hashref. The following is very suspicious:
while (@row = $db->fetch_assoc($row[0]))
You are using a row in an array as an argument to define that array. That doesn't make sense to me. I suspect that somewhere in the bowels of fetch_assoc() is a call to fetchrow_hashref that uses the parameter passed to the former as a parameter for the latter. That would explain the observed error message.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Issue with Print
by Ashley Jordan (Novice) on Feb 14, 2014 at 15:29 UTC | |
by tangent (Parson) on Feb 14, 2014 at 15:42 UTC | |
by Ashley Jordan (Novice) on Feb 14, 2014 at 16:14 UTC | |
by tangent (Parson) on Feb 14, 2014 at 17:28 UTC |