Hi,
try doing
PHP Code:
while($line = mysql_fetch_array($result, MYSQL_ASSOC)){
if(!empty($line))
{
$list[] = $line;
echo $line."<br>";
}
}
or
PHP Code:
while($line = mysql_fetch_array($result, MYSQL_ASSOC)){
if(!empty($line))
{
$list[] = $line;
}
}
print_r($list);
See what is last in the line and find out the value after it.
What type of data are you dumping? String?, links? string lengths?
If you want to PM me I could have a direct look if needed to help debug it, im just interested in what would cause such an issue. :/