Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: CGI-Output Problems

by chiller (Scribe)
on Apr 18, 2002 at 04:42 UTC ( [id://160110]=note: print w/replies, xml ) Need Help??


in reply to CGI-Output Problems

Can you post the code of your loop? This probably doesn't answer your question, but I don't understand exactly why you'd want to use hashes, if you can just pull the data right out of the database. If you want to do that (I assume you're using DBI), try something like this:
... $sth->execute; print "<table>"; while (my @row = $sth->fetcharray) { print <<END_OF_TEXT; <tr><td>$row[0], $row[1]</td><td>$row[1]</td></tr> <tr><td colspan="2">$row[3]</td></tr> END_OF_TEXT } print "</table>";
...where @row contains a row of your data. Of course if you just have a document delimited by :'s, you may just want to check out the Text::CSV_XS module.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://160110]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-25 07:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found