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

If it is writing 1200 lines a failing, have your tried running a similar query along through PHPmyadmin or similar to see if any of the fields you are pulling are empty.

Do you do any outputting in the page?

try putting in some checking

i.e.

PHP Code:
while($line mysql_fetch_array($resultMYSQL_ASSOC)){ 
    if(!empty(
$line))
    {
        
$list[] = $line;
    }

can you also show a dummy of what $result it?
What type of field/size are you pulling into the array?
jimbona is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote