View Single Post
Old 02-28-2007, 05:24 PM  
jimbona
Confirmed User
 
Join Date: Jan 2007
Posts: 190
Hi,

try doing

PHP Code:
while($line mysql_fetch_array($resultMYSQL_ASSOC)){  
    if(!empty(
$line)) 
    { 
        
$list[] = $line
        echo 
$line."<br>";
    } 

or
PHP Code:
while($line mysql_fetch_array($resultMYSQL_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. :/
jimbona is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote