in reply to selecting from a mysqldatabase
Another possibility is that your table has duplicate data. To check for this, simply insert a print after the while loop -use Data::Dumper; my @compile ... print "<pre>\n", Dumper(\@compile), "\n</pre>\n";
while (my($identifier)=...) { print "<tr><td><font color=#FF0000>", # <- insert print "$identifier</font></td></tr>\n"; foreach ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: selecting from a mysqldatabase
by bory (Beadle) on Nov 24, 2003 at 11:10 UTC |