in reply to Re^2: use of DBI perl function fetchall_arrayref
in thread use of DBI perl function fetchall_arrayref
is telling perl to stringify a list of array references and print them out as strings to your web page. And that is exactly what you are seeing. Those "ARRAY(0x....)" things are perl's normal way of converting references into strings.print $CGI->p("rows is ", @$rows);
Others have pointed other problems with the code, which you might have fixed. Do pay special attention to every "@" and "$", and to the (absence of) spaces around them -- perl is especially picky about those details, because it needs to be.
|
|---|