Hallöchen!
===========
Das Script
#!/usr/bin/perl
use CGI;
use strict;
use DBI;
my $cgi = CGI->new();
my $dbh=DBI->connect('DBI:mysql:database=foo;host=localhost','root','');
my $user = $cgi->param("user");
print "Content-type: text/html\n\n";
my @available;
my $alle=$dbh->selectall_arrayref("SELECT user FROM bilderuser WHERE user LIKE '%'");
foreach my $einer(@$alle) { push(@available, $einer); }
for (@available)
{
print "$_<br>\n";
}
===========
Die Ausgabe
ARRAY(0x8231334)
ARRAY(0x8231358)
ARRAY(0x823137c)
ARRAY(0x82313a0)
==============
Das Problem:
Diese Hashes bzw. Arrays in der Ausgabe sollen verschwinden.
Woher kommen die?
Wie gehen sie weg?
Danke!
Aqua